Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#4.0

EF 4.1 Cached object performance tip

5.00/5 (1 vote)
25 Jan 2012CPOL 15.1K  
A performance tip for EF 4.1

The Find() method on your DbContext allows you to get a specific object, based on its primary key from the database the first time. Thereafter, it gets it from the context's cache, instead of making a round trip to the database each time you request that object. Thus, you get faster performance because there are no extra calls to the database.

License

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