Split EDMX for Entity Framework - Split an object layer into separate files - maybe?

Is it possible to split partial classes in split edmx objectlayer.cs into a file for each class?

thank

+2
source share
1 answer

Most of the answers so far seem to discuss splitting EDMX into parts. From your question, it sounds like you want to split the generated classes into separate files. This is not currently supported, but you can do this using T4 templates with EF in 4.0. You can already do this using Damien Guard L2ST4 templates for LINQ to SQL.

Jim wooley

www.ThinqLinq.com

+2
source

All Articles