Tôi có một ngoại lệ khi triển khai các câu lệnh sau.
DateTime result;
if (!DateTime.TryParse(rule.data, out result))
return jobdescriptions;
if (result < new DateTime(1754, 1, 1)) // sql can't handle dates before 1-1-1753
return jobdescriptions;
return jobdescriptions.Where(j => j.JobDeadline.Date == Convert.ToDateTime(rule.data).Date );
ngoại lệ
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
Tôi biết ngoại lệ có nghĩa là gì nhưng tôi không biết làm thế nào để loại bỏ nó. Bất kỳ giúp đỡ?
.Date
.