I have following field schema:\[code\]Id intContentId intDateCreated datetime\[/code\]I run this linq query to group by ContentId, this works fine:\[code\]from p in JlrPageViewCountersorderby p.DateCreated descending group p by p.NodeId into groupingselect new {Id=grouping.Key,Count = grouping.Count()}\[/code\]But sometime there are two rows which has the same count number (i.e. 1) but have been created on two different dates, I want to chose the most recent one (from datecreated field) to be first. How can this be achieved via linq?Please advice...