7

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

Shay Erlichmen
  • 31,691
  • 7
  • 68
  • 87
Niran
  • 1,106
  • 1
  • 8
  • 10

1 Answers1

5

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...

Thomas Levesque
  • 286,951
  • 70
  • 623
  • 758