I have begun developing an application using the Entity Framework.
I have added a namespace to contain all of my user management code MyApp.Users for example, and th
You can definitely have multiple models - but they cannot overlap. The error message is pretty clear - if they do overlap, how would EF know which CLR type to map to - there's no way of telling that, really.
In your case, you could possibly try to extract the Users table into a third model of its own, if it needs to be used in two other places as well.
Marc