Dapper如何操作实体
程序员文章站
2022-05-13 21:46:10
首先要安装 Dapper.Contrib,直接从nuget安装即可。 dapper官方文档:http://dapper-tutorial.net/dapper 支持插入、更新实体,批量插入、批量更新实体。 ......
首先要安装 ,直接从nuget安装即可。
dapper官方文档:
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>();
支持插入、更新实体,批量插入、批量更新实体。