Questions tagged [linqbridge]

12 questions
7
votes
1 answer

Linq bridge performance

Has anyone here used Linq Bridge If so, what is its performance like? Is it a full replacement for linq?
Niran
  • 1,106
  • 1
  • 8
  • 10
4
votes
1 answer

Accessing LinqBridge from JSON.NET dll

I am using JSON.NET which has the LinqBridge .dll merged in. LinqBridge allows Linq to be accessed from .NET 2. If I try to use Linq, even after importing System.Linq, I receive the following error: Error 13 Could not find an implementation of…
Casebash
  • 114,675
  • 90
  • 247
  • 350
4
votes
3 answers

Datatable does not contain a definition for AsEnumerable using LinqBridge1.1 in C#2.0

i'm trying to use linq in c#2.0(linqbridge) to search for a patient name in my database, but i'm getting the following errors: System.Data.Datatable does not contain a definition for AsEnumerable() System.Data.Datatable does not contain a definition…
user1421676
  • 61
  • 1
  • 1
  • 4
3
votes
2 answers

Using LinqBridge in .Net2.0 Website

has anyone been able to use Linqbridge on a .Net 2.0 Website? I have no problem using it in a normal .Net 2.0 console, but when I use the methods in the website, I get Feature 'extension method' cannot be used because it is not part of the ISO-2…
C_Rance
  • 661
  • 12
  • 25
2
votes
3 answers

LINQBridge users: is it feature-complete?

For desktop programmers, do you avoid deploying .NET 3.5 framework on client machines for its big footprint? If so, is LINQBridge feature-complete? [EDIT] .NET 3.5 Framework evokes a feeling of OLE 2.0 (aka COM). When 2.0 newly came out, some…
Hao
  • 8,047
  • 18
  • 63
  • 92
2
votes
3 answers

Non Linq way to check list items are same

This is the Linq way to check whether all items are same in list. if (list.Distinct().Skip(1).Any()) But doesn't work for a application developed earlier than .NET 3.5 What is the best optimal way to do it in non Linq way.
Mudassir Hasan
  • 28,083
  • 20
  • 99
  • 133
2
votes
1 answer

How to convert GetFuncType using LINQBridge

I have a client using .net and I am using LINQBride with some existing code that uses LINQ. I don't really know much about linq but am wondering if there is a quick conversion using LINQBridge for this…
user204588
  • 1,613
  • 4
  • 31
  • 50
1
vote
1 answer

LINQBridge IComparer exception

I am using LINQ Bridge targetting the .NET 2.0 Framework, and I am getting the following error. Just wanting the first element from a collection, chosen at random. Not concerned about performance in this particular case. var result =…
Bryan Crosby
  • 6,486
  • 3
  • 36
  • 55
1
vote
3 answers

Order a List by Date, but it has a String ID, if that ID is repeated with different date in the collection with should appear below of it

I couldn't express better what I am asking in the title. This is what I'm looking. I have a disordered List of an Specific Object I have a DateTime and String Property. The String Property Has values Like this ones (note that it is an string, not a…
Hector Sanchez
  • 2,297
  • 4
  • 26
  • 39
0
votes
1 answer

Is it possible to deploy ASP.NET MVC to a .NET 2.0 server?

I have a win 2k3 server (so stating the obvious IIS6) with service pack 2. Is it possible to bin deploy an ASP.NET MVC 2 application to this server with installing additional material on the server? The server currently has .NET 2.0 framework…
James
  • 2,445
  • 2
  • 25
  • 35
0
votes
2 answers

Existing same reference on different dlls in .NET4.0

I added a reference (LinqBridge.dll) to my existing project and the references are conflicted like below. Error 74 The type 'System.Action' exists in both 'C:\Program Files (x86)\Reference …
Barış Velioğlu
  • 5,709
  • 15
  • 59
  • 105
0
votes
1 answer

Getting MethodAccessException when using LinqBridge

I am attempting to use LinqBridge with Compact Framework 2.0 but I get a MethodAccessException when a Linq Where method is called. First I tried using the pre-compiled assembly from BitBucket, my own fork with some minor tweeks to compile for CF,…