我正在使用Dapper.NET进行数据库连接。
到目前为止,我已经手工编写了插入和更新所需的所有SQL,我发现了Sam Saffron的这篇旧帖子
Performing Inserts and Updates with Dapper
但是,对于如何从POCO对象进行插入和更新,它没有任何结论,除了几个到目前为止几年的代码链接。
从那时起,有一个新的小助手库可以自动生成弹出的内容吗?
答案 0 :(得分:0)
您可以使用Dapper.Contrib
//Insert one entity
connection.Insert(new Car { Name = "Volvo" });
//Insert a list of entities
connection.Insert(cars);
//Update one entity
connection.Update(new Car() { Id = 1, Name = "Saab" });
//Update a list of entities
connection.Update(cars);
查看更多示例here。