有谁知道如何进行获取今天所有生日的 Linq 查询?下面的代码不起作用:
var getBirthdays =
orgContext.CreateQuery<Contact>()
.Where(c => c.BirthDate != null
&& c.BirthDate.Value.Month == DateTime.Now.Month).ToList();
我收到这样的错误:
“'where' 条件无效。实体成员正在调用无效的属性或方法。”
提前致谢!