Hello, I'm using a search method with entity framework and oracle, and I encountered a problem with dates.
In my search I use the following logic:
Find(x => x.Data_Intencao >= Periodo.Date, c => c.SubOrigem_EF);
But in my Data_Intencao
she is searching the date and time.
If I put Data_Intencao.Date
the following error is displayed:
'The specified type member' Date 'is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported. '