Cannot use table 'AspNetUsers' in schema '' for entity 'AspNetUsers' since it is being used for another entity
问题 We are trying to add Identity 3 to our existing Customers app by extending AspNetUsers public class ApplicationUser : IdentityUser { public string BusinessName { get; set; } public string ContactName { get; set; } public string CountryCode { get; set; } public virtual Countries Country { get; set; } public string AddressLabel { get; set; } public string Phone { get; set; } public DateTime? FollowUp { get; set; } public bool MailingList { get; set; } public int SubscriptionId { get; set; }