configuring one to one relationship in asp.net identity
问题 this is my ApplicationUser class.I have added only one new property ---- public class ApplicationUser : IdentityUser { //public ApplicationUser() //{ // UserProfileInfo = new UserProfileInfo { ImageSize = 0, FileName = null, ImageData = 0 }; //} public string HomeTown { get; set; } public virtual UserProfileInfo UserProfileInfo { get; set; } and this is my userProfileInfo class where i want to save every user's profile pic after they have completed the registration---- public class