Hello,
I am beginning a new project, so one of the tasks given to us is to determine whether we should create one large Entity Framework 4 model (don't know how many tables yet), or split the model into separate models, one per module within the application.
If we create separate models, we'll have repeated entities within each module, but this way we have less grouped entities, less potential performance problems, etc.
So if anyone can provide insight or their experience when setting up EF models I would appreciate it. What are the pain points to be aware of?
Thanks.