我尝试通过 linq 选择一些数据,但系统显示此错误
“System.DateTime”类型的表达式不能用于“Boolean Equals(System.Object)”方法的“System.Object”类型参数
我的 WorkingResults.EffectiveDate 是 DateTime?但我的日期变量是 DateTime。如何更改我的代码来解决这个问题?
WorkingResult workingResultObj = (from workingResult in this.DataWorkspace.ApplicationData.WorkingResults
where workingResult.EmployeeCode == employeeCode && workingResult.EffectiveDate.Equals(date)
select workingResult).FirstOrDefault();
感谢您的任何帮助。