尝试从 MVC 实体框架中的 MS SQL DB 查询日期范围时收到错误消息。
Unable to cast the type 'System.Boolean' to type 'System.Data.SqlTypes.SqlBoolean'. LINQ to Entities only supports casting Entity Data Model primitive types.
这是我们的查询:
dbWS.Where(Function(x) x.CountyCode = user.County And x.CompleteStatus.Contains("0") And x.ProgramEffort = 25 And
x.combinedDate >= prevDate 和 x.combinedDate <= 明天)
粗体代码导致此错误。我们以不同的方式查询它并且它有效,但是由于我们必须更改为日期范围,所以我们不断收到此错误。