我尝试使用实体框架在今天的日期返回数据库中的记录数。我认为我的查询没问题,如果你看看屏幕截图记录2是今天日期3中唯一的项目,这是正确的。
我怎样才能归还一个计数。目前它返回一个bool值
谢谢
Dim today = DateTime.Today.Date
Dim todaysBuild = retrieveOrders.[Select](Function(build) build.TimeAndDate >= today).ToList()
编辑:
Dim todaysBuild = retrieveOrders.Where(Function(build) build.TimeAndDate >= today).ToList()
答案 0 :(得分:1)
变量todaysBuild
是一个列表。您需要该列表的计数(Integer
),因此请在代码末尾添加.Count
。
Dim todaysBuild = retrieveOrders.[WHERE](Function(build) build.TimeAndDate >= today).ToList.Count