Tag Archives: patterns
Entity Framework v4, End to End Application Strategy (Part 2, Data Layer)
In part 1, I talked about what the whole app stack will look like. To recap the stack: SQL Server ↑ Data Layer — EFv4 ↑ (Auto generated AutoMapper configs between entities and DTOs) DTOs (Auto generated with T4 templates, based on the edmx) ↑ Service Layer (WCF REST, based on a template) ↑ (Json.NET [...]
Entity Framework v4, End to End Application Strategy (Part 1, Intro)
Sorry I haven’t posted in so long. Been very busy with new projects at work and a bit of side work. Ok, so I think I am finally moving on from NHibernate, at least for new development. Obviously I’m not going to do anything rash like completely rewrite the data layer of large and complex [...]
Making Entity Framework (v1) work, Part 1: DataContext lifetime management
EFv1 is sorely lacking in many areas. That doesn’t seem to stop people from using it, however. If EFv2 weren’t on the way (March 2010), I’d probably still be using NHibernate for everything. However, EFv2 (actually named v4 to “align” it with the .NET version number, or as a marketing ploy to make it seem [...]
Entity Framework v4, End to End Application Strategy (Part 3, Changes to Data Layer)