C# Dapper - How to select using a list of Ids with an IN clause in MSSQL
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 »
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 how to »
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 do not »
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 »