会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
java小兵
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2022年2月3日
dotnetcore EF 乐观锁并发控制
摘要: 使用IsConcurrencyToken()设置并发token builder.Property(h => h.Owner).IsConcurrencyToken(); 使用SQL语句类似以下 update house set owner = @p0 where id = 1 and owner =
阅读全文
posted @ 2022-02-03 19:22 .net一小兵
阅读(245)
评论(0)
推荐(0)
编辑
dotnetcore EF 查询筛选
摘要: 增加IsDeleted属性 软删除,设置IsDelete为true Student s = ctx.Students.FirstOrDefault(s => s.Id == 10); s.IsDeleted = true; await ctx.SaveChangesAsync(); 调用HasQue
阅读全文
posted @ 2022-02-03 18:22 .net一小兵
阅读(74)
评论(0)
推荐(0)
编辑