up vote 24 down vote favorite
6
share [g+] share [fb]

I am looking for a way in LINQ to match the follow SQL Query.

Select max(uid) as uid, Serial_Number from Table Group BY Serial_Number

Really looking for some help on this one. The above query gets the max uid of each Serial Number because of the Group By Syntax.

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted
        using (DataContext dc = new DataContext())
        {
            var q = from t in dc.TableTests
                    group t by t.SerialNumber
                        into g
                        select new
                        {
                            SerialNumber = g.Key,
                            uid = (from t2 in g select t2.uid).Max()
                        };
        }
link|improve this answer
I want to accept both as answers, but I guess I can't so I voted for both of you guys. Thanks a BUNCH!!! – SpoiledTechie.com Oct 1 '08 at 16:33
feedback
var q = from s in db.Serials
        group s by s.Serial_Number into g
        select new {Serial_Number = g.Key, MaxUid = g.Group.Max(s => s.uid) }
link|improve this answer
I want to accept both as answers, but I guess I can't so I voted for both of you guys. Thanks a BUNCH!!! – SpoiledTechie.com Oct 1 '08 at 15:08
Also note that the variable for the => lambda expression in the Max function can be anything (s => s.uid, tv => tv.uid, asdf => asdf.uid). Linq will automatically recognize it as selecting over elements of type Serial. – Michael Mar 17 '11 at 17:03
feedback

I've checked DamienG's answer in LinqPad. Instead of

g.Group.Max(s => s.uid)

should be

g.Max(s => s.uid)

Thank you!

link|improve this answer
upvoted for the extra effort in checking this – Michael Mar 17 '11 at 16:44
feedback

Your Answer

 
or
required, but never shown

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