UnoSD / Moq.Dapper

Moq extensions for Dapper methods.
GNU General Public License v2.0
173 stars 78 forks source link

Any chance of supporting Dapper.Contrib extension methods? #12

Open Rodske opened 6 years ago

Rodske commented 6 years ago

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?

UnoSD commented 6 years ago

@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.