Jarvis Bot
Jarvis Bot

Reputation: 491

Is there a extension library specifically for LINQ to Objects?

This question comes as a logical follow-up to one of my earlier questions:

Extension method for UPDATE...

I would like to know if there is a library specific for LINQ to Objects ... more specifically a set of useful extensions for IEnumerable ?

Here ... I do not want to know about the SQL entity or XML related extensions. Is there an extension library specific for LINQ to Objects?

Upvotes: 0

Views: 291

Answers (2)

rajesh pillai
rajesh pillai

Reputation: 8118

Have a look at

www.extensionmethod.net

Upvotes: 1

Jon Skeet
Jon Skeet

Reputation: 1500675

LINQ to Objects itself lives within System.Core. It's not the only thing in that assembly though.

If you want LINQ to Objects but for .NET 2.0, there's LINQBridge.

If you want more than LINQ to Objects provides, you might want to look at MoreLINQ. (We have things like DistinctBy, Concat for individual items, MinBy, MaxBy etc.

Upvotes: 1

Related Questions