views:

25

answers:

1

I cracked open the tekpub EF4 series last weekend and replaced my subsonic stuff that I started with on a new site. I was a little miffed to find however, that with my entities in a separate domain project, I could not "partial" the entities on my MVC2 app. I did the awful thing of putting my EF4 model right in my app and then it worked fine (the TekPub vid dealing with MVC2 had this setup as well which may have been for the same reason?). There was no explicit reason given for why I couldn't do this. Did I miss something?

A: 

You can certainly use partial classes with the EF model in a separate assembly. However, with any partial class (not just EF), all partial definitions must be in the same assembly.

Craig Stuntz