vote up 3 vote down star
2

Just getting started with Linq to SQL so forgive the newbie question. I'm trying to reproduce the following (working) query in Linq to SQL (VB.NET):

Select
    f.Title,
    TotalArea = Sum(c.Area)
From Firms f
Left Join Concessions c on c.FirmID = f.FirmID
Group By f.Title
Order by Sum(c.Area) DESC

(A Firm has many Concessions; a Concession has an area in hectares. I want a list of Firms starting with the ones that have the greatest total area of all their concessions.)

I'm imagining something like this as the Linq to SQL equivalent (pseudo-code)

From f As Firm In Db.Firms _
Order By f.Concessions.Sum(Area)

... but that's not right. Can anyone point me in the right direction?

flag

77% accept rate

4 Answers

vote up 7 vote down check

Answer

Here's the correct Linq to SQL equivalent

From c In Concessions _
Join f In Firms on f.FirmID equals c.FirmID _
Group by f.Title _
Into TotalArea = sum(c.OfficialArea)  _
Order by TotalArea Descending _
Select Title, TotalArea

Thanks to @CMS for pointing me to LinqPad - what a great tool. You just point it to your database and you're off and running. Not only are hundreds of samples included, but you can run them against included live databases. I was able to arrive at the above query in just a few minutes starting from the provided samples.

link|flag
You're welcome Herb, I also learned a lot with that tool... – CMS Oct 19 '08 at 18:11
A big thumbs up for LinqPad – Farinha Nov 16 '08 at 22:00
Can you provide the C# version of this segment? I've tried but not successful. – Buu Nguyen Dec 11 '08 at 6:08
vote up 3 vote down

Here you can find many examples about using aggregate functions and grouping, additionally I recommend you very much LinqPad, it's a great tool to test your queries on the fly and it's very good way to learn LINQ, it comes preloaded with 200 examples.

link|flag
Thanks - playing with LinqPad now, very cool. – Herb Caudill Oct 19 '08 at 15:38
vote up 0 vote down

This might be helpful to you.

link|flag
vote up -1 vote down

Linq 101 fails a lot...

link|flag

Your Answer

Get an OpenID
or
never shown

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