The fact that SQL Azure is inherently multitenant, and needs to share physical resources among all clients of the service underlies many of the feature differences between SQL Server and SQL Azure; although, a tremendous overlap exists in functionality and compatibility between the two. Read on to learn more.
Latest Data & Databases Articles
Stored Procedure Caller Generator
Wong Shao Voon presents an application that can generate C# methods to call your stored procedure.
Applying The Repository Pattern on LINQ and ADO.NET Entity Framework 4
Make use of the Repository Pattern to break the dependencies between your application's domain model and data access code.
Video: An Introduction to SQL Azure Web Portal
Learn to work with the SQL Azure web management portal as we walk through how to, set up firewall access rules, create and delete databases and more.
Using Projections to Boost Performance
Learn the practice of using projections in your LINQ statements to ensure you are not over retrieving data values from your Entity Framework model.
Speed Up Repetitive Insert, Update, and Delete Query Statements
Learn how to use table-valued parameters, introduced in SQL Server 2008, to boost the performance and scalability of your .NET framework applications. You'll also see an example of how to create and use the user-defined type.
Latest Developer Videos
More...Latest CodeGuru Developer Columns
MFC Integration with the Windows Transactional File System (TxF)
The Transactional File System (TxF), which allows access to an NTFS file system to be conducted in a transacted manner through extensions to the Windows SDK API. MFC 10, has been extended to support TxF and related technologies. This support allows existing MFC applications to be easily extended to support kernel transactions.
.NET Framework: Collections and Generics
The original release of the .NET Framework included collections as .NET was introduced to the Microsoft programming world. The .NET Framework 2.0 introduced generics to complement the System.Collections namespace and provide a more efficient and well performing option. Read on to learn more...

Working with Hashtables in .NET
There are millions of Namespaces in the .NET Framework. Coming from a VB 6 background, I was accustomed to arrays and arrays only. Luckily all has changed with .NET, in that the .NET Framework supports Collections, which as its name implies, is a collection of objects that you can store in a certain manner.
Implementing a WCF Message Contract
WCF implementations normally take two different approaches; a Document style or an API style. Document style implementations are more flexible and often easier to extend and version. Also, Document style or rather, Message Contract service implementations, work well between systems with a shared message assembly. Jeffrey Juday guides you through architecting a WCF Message Contract implementation.