How do I create a transaction if my DAL is using dapper-dot-net?
My c# winform application will be used in network and the data will be saved to a central sql server.
My use case requires use of transactions. Can I do this using dapper, or will I need to use something like NHibernate?
Also, is there any risk or limitation with this framework if I am using stored procedures? Will I need to change my approach due any possible limitations?