Click here to Skip to main content
15,886,578 members
Articles / All Topics

EF Feature CTP5 – Walkthrough For The New DbContext T4 Template

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
8 Dec 2010CPOL2 min read 19.4K   2
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.

This article was originally posted at http://feeds.feedburner.com/GilFinkBlog

License

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


Written By
Technical Lead sparXys
Israel Israel
Gil Fink is a web development expert and ASP.Net/IIS Microsoft MVP. He is the founder and owner of sparXys. He is currently consulting for various enterprises and companies, where he helps to develop Web and RIA-based solutions. He conducts lectures and workshops for individuals and enterprises who want to specialize in infrastructure and web development. He is also co-author of several Microsoft Official Courses (MOCs) and training kits, co-author of "Pro Single Page Application Development" book (Apress) and the founder of Front-End.IL Meetup. You can read his publications at his website: http://www.gilfink.net

Comments and Discussions

 
GeneralThis was more helpful than any Microsoft link... Pin
godbrain12-May-11 7:46
godbrain12-May-11 7:46 
GeneralRe: This was more helpful than any Microsoft link... Pin
Gil Fink12-May-11 8:14
Gil Fink12-May-11 8:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.