Current state of implementation of DifferentDatabaseScope

In my current project, you need to connect to two different databases (the same schema, another database engine) using the activerecord lock. The connection string for the first database is the same all the time, but the second changes dynamically based on user input. I decided that the best solution is to use DifferentDatabaseScopefor a second database.

From the castle design documentation, it was pointed out that DifferentDatabaseScope Still very experimental, and it is not bulletproof for all situations. I want to know what are the situations due to which it DifferentDatabaseScopedoes not work or does not work as intended.

+3
source share

All Articles