I have the SQL and trying to convert ti to Linq query. I need to group records by several fields, how to do that in Linq?

var statistic = DataAccess.Instance.Statistics.Where(
p =>
    p.DateStamp >= minDate &&
    p.DateStamp <= DateTime.UtcNow && p.UserId == userId &&
    p.Url.Contains(url)
    ).
    GroupBy(p=>p.PageTitle //How to group by second(Url) field? 


 SELECT PageTitle
             , Url
             , Count(*) As [Count]
          FROM Statistic
         WHERE URL like @url
         AND DateSpan BETWEEN @dateRange1 AND @dateRange2
         AND UserId = @UserId
         GROUP BY PageTitle, Url
         ORDER BY Count(*) DESC, Url;
link|improve this question

64% accept rate
possible duplicate of Group By Multiple Columns - LINQ – Pleun Dec 28 '11 at 15:17
feedback

1 Answer

up vote 1 down vote accepted

You need to group by an anonymous type:

.GroupBy(p => new { p.PageTitle, p.Url })
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.