青草幽幽

ef查询当天的数量

电脑版发表于:2020/6/27 17:10

code:

 var all = db.Content.Where(c => c.UserId == userId &&
  DbFunctions.DiffDays(c.CreateTime,nowDate)==0).Count();

如果是查询当前的而不是一个时间范围其实查询大于当天的即可

DateTime nowDate = DateTime.Now.Date;
return context.Article.Where(a => a.UserId == userId && a.CreateDate > nowDate).Count();

这算是一个比较好的小技巧不需要一个时间范围了

关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢