Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linq bridge performance

Tags:

c#

linqbridge

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

like image 495
Niran Avatar asked Mar 22 '10 09:03

Niran


1 Answers

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

like image 130
Thomas Levesque Avatar answered Nov 12 '22 14:11

Thomas Levesque