I have a Linq
Result from which I need to select only Date
from DateTime
.
My Query goes like this :
var UserTemplates = (from xx in VDC.SURVEY_TEMPLATE
where xx.USER_ID == userid && xx.IS_ACTIVE == 1
select new
{
xx.TEMPLATE_ID,
xx.TEMPLATE_NAME,
//CREATED_DATE = xx.CREATED_DATE.Value.Date
//CREATED_DATE = EntityFunctions.TruncateTime(xx.CREATED_DATE)
xx.CREATED_DATE
}).ToList();
Is that Possible? Any help would be greatly appreciated.
CREATED_DATE - `datetime` datatype
Actually,I'm Binding it to a Control as a DataSource
and the control is displaying both Date and Time
.But I want to display only date
.
When I'm trying with CREATED_DATE = xx.CREATED_DATE.Value.Date
,It is giving an error like :
See Question&Answers more detail:osThe specified type member 'Date' is not supported in LINQ to Entities. Only initializers, entity members, and entity navigation properties are supported.