Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class with properties: Row, Seat. For example we have the following data:

Row Seat
1    1
1    2
1    3
2    4
2    5

I want return Dictionary<int,int> that contain Row as key, and numbers of seats in row as value. For above example the dictionary will contain two records:

Key Value
1    3
2    2

How can I do this?
Thanks.

share|improve this question
What have you tried so far? – Steven Mar 14 '12 at 9:29
did you mean the maximum number of seats in a row to be returned as value? – Zeina Mar 14 '12 at 9:30
Use GroupBy() and Count() like you would do in SQL. – Adriano Mar 14 '12 at 9:31
@Zenia: I updated example. – user348173 Mar 14 '12 at 9:33

2 Answers

up vote 8 down vote accepted
list.GroupBy(x => x.Row)
    .ToDictionary(x => x.Key, x => x.Count());
share|improve this answer
Thanks.What about peromance of this solution? – user348173 Mar 14 '12 at 9:32
Without the .ToArray(). The OP wants to have a dictionary, not an array. – Steven Mar 14 '12 at 9:33
@Steven thanks. – L.B Mar 14 '12 at 9:34
1  
@user348173: You should measure the performance yourself to see if it fast enough for your requirements. Tip: Look at the produced SQL using the SQL Profiler to see if it is what you expect it to be. – Steven Mar 14 '12 at 9:34
If list is an IQueryable<T>, you might gain something by supplying an anonymous type (such as new { Row = x.Key, Count = x.Count() }) into the dictionary, since ToDictionary will operate on IEnumerable<T> and will possibly force you to return much more data from the database than strictly needed. – Steven Mar 14 '12 at 9:39

It's not too involved:

var seatings = new List<Seatings>(); /* list of your class instances */
seatings.GroupBy(s => s.Row).ToDictionary(s => s.Key, s => s.Count());

Grouping by row yields a collection of groups where each group has a Key equal to the row and can be enumerated to yield all the seatings in that row. You can make a dictionary directly out of that with ToDictionary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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