Dapper Extensions is a small library that complements Dapper by adding basic CRUD operations (Create, Read, Update, Delete) for your POCOs.
How can I ignore a property on my model using dapper/dapper extensions/dapper rainbow or any of those dapper …
dapper dapper-rainbow dapper-extensionsI have 2 simple tables. create table Owner ( Id int primary key, Name nvarchar(100), ); create table Status ( Id int primary key, …
foreign-keys dapper relation dapper-extensionsI have a table that has a primary key composed of two columns, neither of which are auto-incrementing, and my …
c# primary-key dapper dapper-extensionsI am using Dapper.net Extensions and I would like to be able to retrieve a Photo object and set …
c# dapper dapper-extensionsI'm a new baby in Dapper. Trying to incorporate CRUD operations with Dapper and Dapper.SimpleCRUD lib. Here is the …
c# sql dapper dapper-extensionsI have a bit of a problem with my code and getting dapper to play nicely with it. When I …
c# dapper dapper-extensions dapper-fluentmapI am using Dapper.net Extensions and would like to ignore certain properties without having to write a complete custom …
c# dapper dapper-extensions