There are several Dapper functions exposed in Dapper.Contrib ...
T Get<T>(id);IEnumerable<T> GetAll<T>();int Insert<T>(T obj);int Insert<T>(Enumerable<T> list);bool Update<T>(T obj);bool Update<T>(Enumerable<T> list);bool Delete<T>(T obj);bool Delete<T>(Enumerable<T> list);bool DeleteAll<T>();
@Rodske I may support those, too, but I am quite busy at the moment, feel free to attempt a PR to add the feature and I will be happy to review it/help making it work.
There are several Dapper functions exposed in Dapper.Contrib ...
T Get<T>(id);
IEnumerable<T> GetAll<T>();
int Insert<T>(T obj);
int Insert<T>(Enumerable<T> list);
bool Update<T>(T obj);
bool Update<T>(Enumerable<T> list);
bool Delete<T>(T obj);
bool Delete<T>(Enumerable<T> list);
bool DeleteAll<T>();
Are you thinking about support these methods?