Repository pattern is a popular way to achieve separation between the physical database, queries and other data access logic from the rest of an application. Read on to learn Repository pattern in the context of Entity Framework and ASP.NET MVC.
Latest Data & Databases Articles
Working with Blobs and VB.NET
Learn how to save and retrieve BLOBS from a database with Visual Basic.NET.
Creating Asynchronous Actions in ASP.NET MVC
Asynchronous actions are useful in situations where you are performing some network operation such as calling a remote service. Read on to learn more about asynchronous actions and how to create them in an ASP.NET MVC.
Using Parameterized Queries and Reports in VB.NET Database Applications
Hannes du Preez shows you how to parameterize queries and explains the reporting options available in VB.NET applications.
Using Attribute Routing in ASP.NET MVC
ASP.NET MVC 5 allows you to define routes through certain attributes, which is simpler and more intuitive than the older technique of defining routes. Read on to learn how to use attribute routing.
Doing Data Extraction with Visual Basic.NET
Every developer needs to know how to extract data from a database, as it's essentially what makes your app tick. Read on to learn how to extract information from a database and put it in your VB.NET application.
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.

Finger Printing is the New Tracking Cookie
Recently one way that developers have been looking to address the cookie abuse problem is via a method known as fingerprinting. Peter Shaw shows you how to generate a fingerprint in C# for use in your own projects.

Determining Graphic Object Collision with VB.NET
The very first thing you need to learn when creating a game is how to make objects move. Hannes du Preez shows you how to not only make objects move, but also how to determine when they collide.
How to Create MapReduce Jobs for Hadoop Using C#
This article introduces you to Big Data, Apache Hadoop and MapReduce jobs. We will also learn how to create MapReduce jobs using C#.