When I do the following :
[EdmFunction(\"Edm\", \"TruncateTime\")]
public static DateTime? TruncateDateTime(DateTime? inputDate)
{
return inputDate.HasV
If you have a Linq-To-Entities Query you can only perform operations which can be executed by your used database management system.
You will need to get your desired information from your DB and create a list from that query, than that will be called Linq-To-Objects and you will be able to perform you desired operation.