0
votes
1answer
297 views
2
votes
1answer
86 views
Implementation options of summing, averaging, concatenating, etc items in an IEnumerable
I'm looking for the shortest code to create methods to perform common operations on items in an IEnumerable.
For example:
public interface IPupil
{
string Name { get; se …
3
votes
4answers
965 views
Use LINQ to concatenate multiple rows into single row (CSV property)
I'm looking for the LINQ equivalent to the Sybase's LIST() or MySQL's group_concat()
It'll convert:
User Hobby
--------------
Bob Football
Bob Golf
Bob Tennis
Sue …
