We have a database where the tables are organized in multiple schemas like Common.User and Product.Order. There are also tables with the same name in different schemas.
Is it somehow possible to use this schemas to organize the DbSet objects within the DBContext? The best solution for us would be to access the user object like dbcontext.Common.User. Is this possible?
In general, what is the best strategy to work with multiple database schemas in EF Core?
Edit: The question does not target on how to map tables from different schemas (entity.ToTable("User","Common")). It is about organizing the mapped tables according to their schema within the DbContext.