Giovanni Galbo
Giovanni Galbo

Reputation: 13081

Best Practices for Entity Framework and ASP.NET

I've been driving myself crazy trying to get the Entity Framework to work as expected (or at least as I expect) in an ASP.NET environment, specifically dealing with objects belonging to different contexts when attempting to save to the database.

What are the best practices when dealing with the Entity Framework and ASP.NET?

Upvotes: 4

Views: 3389

Answers (1)

NotDan
NotDan

Reputation: 32223

Persistence Ignorance (POCO) Adapter for Entity Framework V1 http://blogs.gotdotnet.com/jkowalski/archive/2008/09/09/persistence-ignorance-poco-adapter-for-entity-framework-v1.aspx

Upvotes: 1

Related Questions