请问在 .NET Core 中是否可以通过 Z.EntityFramework.Plus 实现下面的更新
UPDATE BlogSite SET PostCount = PostCount + 1 WHERE BlogId = @BlogId
同问,这个问题解决么有啊
db.BlogSite.Where(t => t.BlogId == BlogId).Update(t => new BlogSite { PostCount =t.PostCount +1 });