Access to one database from several ORMs :: Caching

I know this is not a good idea, and it would be best to let applications talk about Web services. But I have a situation where an outdated application accesses a database with ORM, and I need to access the same database from a new .net application using Fluent nHibernate.

So the question is, what problems will this do and how to solve them? In my opinion, the main problem is caching. I need to disable caching in one of the applications (this will be a new application).

So how can I turn off caching in nHibernate?

Is there anything else to be careful about?

+3
source share

Source: https://habr.com/ru/post/1747631/


All Articles