Hi
I am trying to execute following Linq query
var x = from d in obj.PG_PAYMENT_TRANSACTIONS
from a in obj.PG_CONTRACT_MASTER
where (d.CREATED_DATE.Date) == (DateTime.Now.Date) && d.CONTRACT_ABBR == a.CONTRACT
select new { d.TRANSACTION_ID };
foreach (var item in x)
{ Getting Error Here Saying that
}
The specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.
Any Idea,
Lavanya