How to add relationship between tables in two different DbContext
问题 I have two DbContext class and some Entities in them. I know this is not good idea to have more than one DbContext but i have to do a lot of works to change my code! so my question is what is the best scenario for add relationship between two Entities with different DbContext? For example an one to many relationship between User Entity with IdentityDb Context and Comment Entity with SiteDbContext : public class User : IdentityUser { public DateTime JoinDate { get; set; } public async Task