Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / All-Topics

EF Feature CTP5 – Walkthrough For The New DbContext T4 Template

5.00/5 (2 votes)
8 Dec 2010CPOL2 min read 19.7K  
EF Feature CTP5 – Walkthrough For The New DbContext T4 Template One of the new features in the EF Feature CTP5 that was released yesterday was a new T4 template for generating DbContext instead of ObjectContext.

One of the new features in the EF Feature CTP5 that was released yesterday was a new T4 template for generating DbContextinstead of ObjectContext In this post I’m going to explain what is the new DbContextand then show how to use the new T4 template. Pay attention that the details I provide might change in the future since its only a CTP and not a release.

What is DbContext?

The DbContextis a new lightweight context that was created and provided within the EF Feature package. The DbContextis a wrapper for the ObjectContext(it doesn’t inherit from it). Since not in all development scenarios we need the full feature list of the ObjectContext the DbContextcan help us by exposing only the common functionality that we need. It includes some additional features for our disposal such as OnModelCreatingextension point.

Using DbContext T4 Template

In order to use the new T4 template for DbContextyou start with your model. The model can be created with the Database First approach or with the Model First approach. The model I’m going to use is the following:

Entity Designer Diagram

When you want to use the T4 template, from the designer surface you will press the right mouse button and press the Add Code Generation Item menu item.

Add Code Generation Item

From the Add New Item window choose the new ADO.NET DbContext Generator and give the model an appropriate name:

Add New Item

After pressing the Add button two new files will be created and a reference to the new EntityFramework.dll will be added:

Solution Explorer

The first file (SchoolModel.Context.tt) will contain the DbContextand the second file (SchoolModel.tt) will contain the entities. Now you can start coding against the DbContext In the following example I query the database using the DbContext to find the department with id of 1:

class Program
{
  static void Main(string[] args)
  {
    using (SchoolEntities context = new SchoolEntities())
    {
      var query = context.Departments.Find(1);
      Console.WriteLine("{0} has a DepartmentID of 1", query.Name);
    }
  }
}

The result of the query:

Result

Summary

You can expect that the EF ecosystem will continue to grow. The new feature CTP adds more functionality for our disposal. One of these features is the new DbContextand also its new T4 template.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)