मुझे निम्नलिखित कथनों को लागू करते समय एक अपवाद मिला।
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 );
अपवाद
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
मुझे पता है कि अपवाद का मतलब क्या है लेकिन मुझे नहीं पता कि इससे कैसे छुटकारा पाया जाए। कोई मदद?
.Date
।