Wystąpił wyjątek podczas wdrażania poniższych instrukcji.
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 );
Wyjątek
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
Wiem, co oznacza wyjątek, ale nie wiem, jak się go pozbyć. Jakaś pomoc?
.Date
.