Niran
Niran

Reputation: 1116

Linq bridge performance

Has anyone here used Linq Bridge If so, what is its performance like? Is it a full replacement for linq?

Upvotes: 7

Views: 1083

Answers (1)

Thomas Levesque
Thomas Levesque

Reputation: 292345

I've been using LinqBridge in a real-world application for a few months, and I'm quite happy with it. I haven't run any performance tests, but the implementation of most operators is quite straightforward, so I don't think there's a significant performance difference with the official MS implementation.

Note that LinqBridge is definitely not a full replacement for Linq : it covers only Linq to Objects (implements the Enumerable methods). There's no support for expression trees, Linq to XML, Linq to DataSets, Linq to SQL...

Upvotes: 5

Related Questions