I want to use the entity framework code-first approach for an asp.net mvc application together with the standard membership provider. The registered users will have posts etc which will link to the user via the userid in the users table. I want the posts and the other objects that point to a user be POCO classes (not inherit from any ef class). But the membership tables are not code-first, so what would be the best way to set this up?
Edit: I found http://codefirstmembership.codeplex.com/. What I don't like though is that my own objects (blogposts etc) should also be included in the membership datacontext that they have built. I'd like to create another datacontext for my own objects to keep things neatly separate and maintainable, but there does not seem to be any option in EF to facilitate communication between different datacontexts.