Is it possible to have an InMemory database (ASP.NET Core) that is shared across multiple DbContexts? It seems that each DbContext type keeps its own database, even when the
Beside the same database name, the model must also be the same.
This means that in case of an own implementation of IModelCacheKeyFactory, it's Create-Method must return "equal" objects.