We have a custom connection string provider that connects to different databases based on the current context.
Doing so uses the same SessionFactory for all databases.
Assuming we may have entities with the same identifiers (i.e. primary key) in different databases, is this taken into account when an item is retrieved from either the first or second level caches?
So if Entity-1 for Db-1 is in the second level cache and I request Entity-1 for Db-2 will NHibernate load the entity from cache (incorrect) or the Db-2 database (correct).