I have set up ASP.NET MVC 4 with System.Web.Providers, and now I would like to add some more user information, like address, birthdate, etc.
I would also like to relate the existing user data from Providers to post, such that each post has an author from the Providers.
I must be such that when a user creates a post, everything about the user must be (lazily) available from selecting that post.
I was maybe thinking about having a User class containing the UserProfile
class from the standard MVC template project (which seems to be used with the HTTP login), and the aspnet_users
from the providers, but I am not really sure how to go about this.
What is the common way of doing this?