v3.0.0
Download the library here
- ADDED:
DapperPlusContext
class. It's now possible to map your entity or perform operation directly into an instance of theDapperPlusContext
class. For example, when you need a dynamic mapping provided by an external source.
var context = new DapperPlusContext();
context.Entity<EntitySimple>().Identity(x => x.ID);
context.Connection = connection;
context.BulkInsert(list);
Trial unlocked until the end of January