I have been scratching my head over this one for a while now. Say I make an extension method, to group a list of items by Date, I want to change the possible grouping, So that the results can be grouped by Day, Week or Month.
I came up with the below, but I keep getting the following error :
Method 'System.Object DynamicInvoke(System.Object[])' has no supported translation to SQL
The method:
public static IQueryable<IGrouping<MonthDateGroup, T>> GroupByDate<T>(
this IQueryable<T> items,
DateGroupFrequency grouping,
Expression<Func<T, DateTime?>> func)
{
var selector = func.Compile();
IQueryable<IGrouping<MonthDateGroup, T>> grouped = null;
if (grouping == DateGroupFrequency.Daily)
{
grouped = from a in items
let date = selector(a).Value
group a by new MonthDateGroup
{
Day = date.Day, Month = date.Month, Year = date.Year
}
into g
select g;
}
//Rest of groupings...
I'm assuming the use of the Func within the Query is causing the error, is it possible to produce code like this?
P.S. I'm still trying to wrap my head around Func's, and Expressions :)