Ho ricevuto un'eccezione durante l'implementazione delle seguenti dichiarazioni.
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 );
Eccezione
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
So cosa significa l'eccezione ma non so come liberarmene. Qualsiasi aiuto?
.Date
.