Search Results

0
votes
1answer
297 views

In statement for LINQ to objects

Is there an equivalent of a SQL IN statement in LINQ to objects? …
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 …