Top "Dapper-extensions" questions

Dapper Extensions is a small library that complements Dapper by adding basic CRUD operations (Create, Read, Update, Delete) for your POCOs.

Ignore property on model property

How can I ignore a property on my model using dapper/dapper extensions/dapper rainbow or any of those dapper …

dapper dapper-rainbow dapper-extensions
dapper map one to one in classmapper

I 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-extensions
Dapper insert into table that has a composite PK

I 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-extensions
Why can't I set "this" to a value in C#?

I am using Dapper.net Extensions and I would like to be able to retrieve a Photo object and set …

c# dapper dapper-extensions
Dapper.SimpleCRUD Insert / Update / Get fails with message "Entity must have at least one [Key] property"

I'm a new baby in Dapper. Trying to incorporate CRUD operations with Dapper and Dapper.SimpleCRUD lib. Here is the …

c# sql dapper dapper-extensions
Dapper complex mapping Dapper.Extensions Dapper.FluentMap

I have a bit of a problem with my code and getting dapper to play nicely with it. When I …

c# dapper dapper-extensions dapper-fluentmap
How to ignore a class property using Dapper.net Extensions?

I am using Dapper.net Extensions and would like to ignore certain properties without having to write a complete custom …

c# dapper dapper-extensions