1

Would dapper have any problems with using two IDbConnection objects for distributing Writes and Reads between MySQL Master/Slaves?

Kynth
  • 2,597
  • 1
  • 18
  • 24

1 Answers1

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