ServiceStack OrmLite transaction support
09 Jul 2016I am a big fan of the ServiceStack OrmLite framework.
I have been working on a fairly big project and have abstracted the data access away into a separate class library and wanted to have a Commit()
method that allowed multiple repositories’s to do their thing and to save across tables in a transactional way.
The ServiceStack OrmLite API is very nice and maps to the IDbConnection
interface nicely. Do check it out.