Skip to content

3.1.1.4

Compare
Choose a tag to compare
@DotNetNext DotNetNext released this 25 Oct 17:11
· 11821 commits to master since this release

1 .禁止更新列和禁止插入列添加了ADD方法

db.AddDisableInsertColumns("name","id");

2.更新字符串加参数

 db.Update<Student>("sch_id=sch_id+1", it => it.id == 1);
db.Update<Student>("sch_id=@sid=1", it => it.id == 1,new {sid=100});

3.SqlBulkCopy SqlBulkReplace 禁止更新列 同名的 BUG