Skip to content

v3.0.0

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 07 Jan 15:17
· 19 commits to master since this release

Download the library here

  • ADDED: DapperPlusContext class. It's now possible to map your entity or perform operation directly into an instance of the DapperPlusContext 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