I have an MVC 2 project where I recently consolidated the auto-generated membership/roles database with my primary database. I have an EF4 model generated from the primary database and it contains a table called Books. Now that I've consolidated the two, I setup relationships between Books and aspnet_Users so that I can see each user's books.
The problem is that I want to update my EF4 model so that it represents this relationship, but I want to keep all of the generated membership code.
Is there anyway to do this?
aspnet_Usersand 'Books` is another kind of mapping the membership tables, even if you don't put it in your EF model. What would happen if you changed to OpenID? Or Facebook/Twitter authentication? Or wanted the SQL Provider data in a separate DB? – Craig Stuntz Nov 18 '10 at 15:09