tmsmith / Dapper-Extensions

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 provides a predicate system. The goal of this library is to keep your POCOs pure by not requiring any attributes or base class inheritance.
1.79k stars 586 forks source link

DefaultMapper does not exist #250

Closed billjwolff closed 2 years ago

billjwolff commented 3 years ago

Per your notes, I tried to add:

DapperExtensions.DapperExtensions.DefaultMapper = typeof(MyCustomClassMapper<>);

For an existing SQL DB with pluralized table names. It says DefaultMapper does not exist. Any ideas?

valfrid-ly commented 3 years ago

Can you give me how is it being called or a test code for it?

valfrid-ly commented 2 years ago

Not possible to replicate