C# Dapper - How to use transactions with Dapper
Dapper is a micro ORM or a simple object mapper and it integrates smoothly with C# and its SqlConnection. The same applies to Dapper and transactions »
Dapper is a micro ORM or a simple object mapper and it integrates smoothly with C# and its SqlConnection. The same applies to Dapper and transactions »
This post shows you how to call a stored procedure with a parameter using Dapper. If we have the following table with an Id (int) and »
Using Dapper you can easily map results of a query to an object or a list of objects. Sometimes you want to select a list of »
Dapper makes it easy to "Execute a query and map the results - if any - to a strongly typed List". This post demonstrates »
This post describes two ways to get the generated identity of a newly inserted row. We will use the following table simple table with an Id »
Dapper [https://github.com/StackExchange/Dapper] will automatically look for a table with a name that matches your entity's name, however sometimes your entities »
This is another one of those embarrassing moments. I just had this issue for quite some time and I could not figure out what I was »
I recently had an odd experience with a select statement. It was a very simple select statement hitting a unique index on a varchar column. But »