Here is the complete list of features to choose your platform.

Compare Windows 2008 and Red Hat

Besides having wonderful looks and features to attract hobbysists and PC users. Windows Vista have many new fearures to attract the developers too.

Lets find out here:
What’s New in Windows Vista for Developers

  1. Beginning C# 2005 Databases
  2. LINQ for Visual C# 2005
  3. LINQ for VB 2005

Books Authored for Apress Inc

April 30th, 2008 | Posted by Vidya Vrat in .NET | C# | Community - (0 Comments)
  1. Beginning C# 5.0 Databases
  2. Beginning C# 2008 Databases
  3. Beginning VB 2008 Databases
  4. Pro ASP.NET 3.5 in VB 2008: Includes Silverlight 2
  5. Pro VB 2010 and the .NET 4.0 Platform

Howard Dierking talked with Bjarne Stroustrup the father of C++ on the further evolution of languages to know what he thinks:
http://msdn2.microsoft.com/en-us/magazine/cc500572.aspx

Indian Developer Summit 2008

April 11th, 2008 | Posted by Vidya Vrat in Visual Studio - (0 Comments)

Great Indian Developer Summit’08 will be happening in the month of May in Bangalore INDIA. This event will provide a high-quality learning and networking experience, with the most intelligent minds and proactive technology organisations.

Register online at Register Here ASAP to avail very early bird discounts. For more information call +91 080 2521 9656 or email info@developersummit.com

This whole even is in three waves, you can either choose your desired one or may be all.

Bleeding-edge .NET : May 19-20, 2008
Visual Studio 2008 & .NET 3.5
Databases/SQL Server/Language Integrated Query(LINQ)
C# 3.0/WF/WCF/WPF
BizTalk Server/BPM/SOA
SharePoint & Search
Visual Studio Team System
Cool & New Technologies

Rich Web : May 21, 2008
Web 2.0 & Social Applications
Enterprise 2.0
Ajax In Action
Dynamic Scripting
Software Mashups
Browsers & Rich UI
Rich Web Security
Rich Web Stories

Daring JAVA : May 22-23, 2008
Java Enterprise
Java Development Tools & Techniques
Java Infrastructure Technologies
Java Mobile
Java on the Desktop
Open Source Java
Java and the Rich Web
Agile Experiences

Microsoft India is launching Virtual TechDays program to introduce Windows 2008, SQL Server 2008 and Visual Stusio 2008.

Visit Virtual TechDays for more details and registration.

As you know that Microsoft has a policy for exams to get retired ater some time, as and when Micrsoft wants to stop mainstream support for those technologies. Microsoft is planning to retire some long lived 12 technology exams titled are on developer and SQL Server topics. The exams validity will expire on 31-March-2009. The final list seems like yet to be determined and may have some changes it.

So be prepared, and better be tuned to hear more on this:-

  • Exam 70-228: Installing, Configuring, and Administering Microsoft SQL Server 2000 Enterprise Edition
    • Exam 70-229: Designing and Implementing Databases with Microsoft SQL Server 2000 Enterprise Edition
    • Exam 70-300: Analyzing Requirements and Defining Microsoft .NET Solution Architectures
    • Exam 70-301: Managing, Organizing, and Delivering IT Projects by Using Microsoft Solutions Framework 3.0
    • Exam 70-305: Developing and Implementing Web Applications with Microsoft Visual Basic .NET and Microsoft Visual Studio .NET
    • Exam 70-306: Developing and Implementing Windows-Based Applications with Microsoft Visual Basic .NET and Microsoft Visual Studio .NET
    • Exam 70-310: Developing XML Web Services and Server Components with Microsoft Visual Basic .NET and the Microsoft .NET Framework
    • Exam 70-315: Developing and Implementing Web Applications with Microsoft Visual C# .NET and Microsoft Visual Studio .NET
    • Exam 70-316: Developing and Implementing Windows-Based Applications with Microsoft Visual C# .NET and Microsoft Visual Studio .NET
    • Exam 70-320: Developing XML Web Services and Server Components with Microsoft Visual C# and the Microsoft .NET Framework
    • Exam 70-330: Implementing Security for Applications with Microsoft Visual Basic .NET
    • Exam 70-340: Implementing Security for Applications with Microsoft Visual C# .NET

The default behaviour of Visual Studio 2008 is to work with .NET 2.0, 3.0 and 3.5.

It looks like Visual Studio 2008 doesn’t allow or support applications written using .NET 1.1. Whereas if you try opening .NET 1.1 in Visual Studio 2008, then it will open the conversion wizard and will convert your .NET 1.1 to .NET 2.0.

Once your application is converted into .NET 2.0 then Visual Studio 2008 will start supporting it. As .NET 2.0 is one of the framework version which Visual Studio 2008 supports.

Introduction to LINQ

February 15th, 2008 | Posted by Vidya Vrat in LINQ - (0 Comments)

Language-Integrated Query (LINQ) is an innovation which Microsoft made with the release of Visual Studio 2008 and the .NET Framework version 3.5 that promises to revolutionize the way that developers has been working with data before the release of .NET 3.5 having LINQ feature. LINQ introduces the standard and unified concept of querying various types of data sources falling in the range of relational database, XML documents or even in-memory data structures.

LINQ offers the following advantages:

  • LINQ unifies and offers the common syntax for querying any type of data source for example, you can query an XML document in the same way as you query a SQL database, an ADO.NET Dataset, an in-memory collection, or any other remote or local data source that you have chosen to get connected and accessed by using LINQ
    • LINQ bridges the gap and strengthens the connection between relational data and the object-oriented world.
    • LINQ speeds development time by catching many errors at compile time and have intellisense and debugging support.
    • LINQ query expressions (unlike a traditional SQL statement) are strongly typed.

Core LINQ Assemblies
—————————————————————————-
Assembly Name ———————|————————Description
————————————————————————–
System.LINQ (Provides classes and interfaces that supports Language-Integrated Query (LINQ) queries.
System.Collections.Generic(Allows users to create strongly typed collections that provide better type safety and performance than non-generic strongly typed collections
System.Data.LINQ(Provides the functionality to use LINQ to access the relational database.
System.XML.LINQ(Provides functionality for accessing XML documents using LINQ)
System.Data.Linq.Mapping(Designates a class as an entity class associated with a database)