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 :)

link|improve this question

feedback

2 Answers

Your problem looks like the query itself cannot be executed into SQL. You may need to convert your items to an IEnumerable before using it. Please note that this will cause the data to be loaded in to memory from SQL server so should be left as late as possible in your LINQ chain.

You could either change your items parameter to be an IEnumerable rather than IQueryable or if that doesn't work create a variable in your method (near the top)

var itemsEnumerable = items.AsEnumerable();

You will also have to change your return type from IQueryable to IEnumerable

link|improve this answer
I need the query to be excuted within SQL. This query works fine if I remove the generics and Func paramater and tie it to a class, but I need generic support for mulitple queries and it must be excuted in SQL due to performance constraints. I assume i'm missing the syntactical sugar needed to make the query work – MiG Jan 13 '11 at 12:56
I'm not sure whether it's possible to modify Linq to SQL, as you'll basically have to find out where the SQL is generated to put your own bits in there. As this is a grouping task have you tried executing it on the server anyway? I think that performance will probably be equivalent to executing it on SQL as the same amount of data is still being returned. – Matthew Steeples Jan 13 '11 at 17:02
feedback

Should the group syntax not be:

group a by new MonthDateGroup
{
 a.Day = date.Day, a.Month = date.Month, a.Year = date.Year
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.