Dapper-Extensions
Dapper-Extensions copied to clipboard
Dapper Extensions is a small library that complements Dapper by adding basic CRUD operations (Get, Insert, Update, Delete) for your POCOs. For more advanced querying scenarios, Dapper Extensions provi...
- #282 Fixed member type validation - Fixed InternalGet returning all table records due to GetPredicate not returning the correct predicate
I have developed a simple little web application where multiple requests running the same time. Since updating Dapper.Extensions to the most current (official) version, I ran into multiple exceptions which...
Using int type as identity key results in an error (library always try to convert the value to long)
Hey, I've found out the following issue when using `int` as a key and then trying to insert the record into the Postgres table (which is configured to be of...
Hello everyone, I created a XUnit test which uses DapperExtensions to update two different tables in the database. This works perfectly fine as long as you execute the two updates...
when select the indentity insert result ,that will convert to int32, when my id is a bitint,the program will throw an convert excption
Hello. I'm having some trouble while trying to use ClassMapper... My entity class: ``` public class Product : AuditableEntity { public Product() { } public Product(int id, string name, decimal...
On line 326 in function GetParameter of file ReflectionHelper.cs you have this code: var entityPropertyName = propertyName.Split('_').Last(); and it is this variable that is used to search for the mapped...
Hello With postgresql we don't need add "INTO @IdOutParam" in TriggerIdentity column. Only "INSERT INTO ... RETURN Id" will work. Sorry for my English.
Hi, I have a user data model containing some underscore columns but I'm unable to insert, update and get records using the dapper extension library it is throwing a reflection...
…t a KeyValuePair (issue #315) Hi, According to [get-operation](https://github.com/tmsmith/Dapper-Extensions#get-operation),it will get a sinlge object, but I get a exception because wherePredicate this variable return a empty IPredicate, `foreach (var kvp...