Would dapper have any problems with using two IDbConnection objects for distributing Writes and Reads between MySQL Master/Slaves?
Asked
Active
Viewed 517 times
1 Answers
2
No, not at all.
Dapper's identity cache uses the connection string as part of the key. This means you could even have your tables "out-of-column-order" in both the master and slave, and dapper would cope fine with it.

Sam Saffron
- 128,308
- 78
- 326
- 506