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.
For instance: running queries to determine if 33 has the 32 bit set (100000 & 100001) isn't possible currently with dapper extensions. This addition should allow that for all the defined dialects
For instance: running queries to determine if 33 has the 32 bit set (100000 & 100001) isn't possible currently with dapper extensions. This addition should allow that for all the defined dialects
For Oracle:
everyone else