Inherit (?) IdentityUser from another project
问题 I have multiple projects in my solution, all .NET Core 3.1. One of them is my core project (“ A Project ”) where I just have basic model classes with no methods or database access. For demonstration purposes, below are simplified versions of my Address.cs and User.cs files: public class Address { public int Id {get;set;} public string AddressText {get;set;} public virtual User User {get;set;} } public class User { public int UserId {get;set;} public int UserName {get;set;} public ICollection