How to Populate Custom Properties Tables When Using SimpleMembership in ASP.NET MVC 4
问题 I started working on a MVC project which has 3 types of users (customers, service providers, and administrators) with different specific properties. I'd like to extend the default SimpleMembership implementation in ASP.NET MVC Web Application Internet Application template in Visual Studio 2012. I have the Customer class (not sure about the Key attribute and the relationship) public class Customer { [Key] public string UserName { get; set; } public string FirstName { get; set; } public string