score:2
The Microsoft implementation of LINQ source is not available for you to use. LINQ will not work with .NET 2.0. You will need at least .NET 3.5.
score:0
Old Question, but interesting.
Source code of linq (part of .Net framework) is now available Reference Source
Also, in github github-Microsoft NET Reference Source
score:2
You might want to try LINQBridge.
score:2
LINQ is not merely classes, it is upgraded compiler as well to understand Anonymous classes, methods, lambda expressions etc. You can use LINQ in 2.0 as well. Create seperate project, set framework 3.5. And it will work in 2.0 projects. Only thing u will miss is intellisense in VS 2005.
score:19
You can use mono's LINQ source code. It is highly compatible with .NET's LINQ.
Update: Even better, original .NET source now is available.
Source: stackoverflow.com
Related Query
- LINQ Source Code Available
- creating Linq to sqlite dbml from DbLinq source code
- source code for LINQ 101 samples
- c# Linq or code to extract groups from a single list of source data
- Convert string[] to int[] in one line of code using LINQ
- Code equivalent to the 'let' keyword in chained LINQ extension method calls
- Linq code to select one item
- How are people unit testing code that uses Linq to SQL
- LINQ query to perform a projection, skipping or wrapping exceptions where source throws on IEnumerable.GetNext()
- Syntax to execute code block inside Linq query?
- Enumerable.Empty<T>().AsQueryable(); This method supports the LINQ to Entities infrastructure and is not intended to be used directly from your code
- Best open source LINQ provider
- Is there a good source that gives an overview of linq optimizations?
- Does this LINQ code perform multiple lookups on the original data?
- How to understand the following C# linq code of implementing the algorithm to return all combinations of k elements from n
- LINQ WHERE method alters source collection
- Is union available in LINQ query syntax?
- get next available integer using LINQ
- Where can I view LINQ source code?
- Suggestions for designing complex LINQ code
- Is there any way to create a LINQ query as a variable without having the data source (yet)?
- Left outer join using LINQ -- understanding the code
- How to pass LinQ Expressions from F# to C# code
- How to reuse a linq expression for 'Where' when using multiple source tables
- LINQ extension methods not available for EnumerableRowCollection<TRow>
- Avoiding code repetition when using LINQ
- Is Unpivot (Not Pivot) functionality available in Linq to SQL? How?
- Using LINQ to delete an element from a ObservableCollection Source
- How does linq actually execute the code to retrieve data from the data source?
- Any libraries available for doing LINQ over Entity Attribute Value pattern?
More Query from same tag
- Linq Select Subset of master list
- Linq Subquery same Table
- linq groupby plus select returning element type rather than value
- Linq get different result from SL 4 and SL 5
- Linq to add outer list index to inner elements
- How to extract the names of all bookmarks in a Word Xml Document
- LINQ querying results for a decimal sum between two dates
- Performance - Microsoft.Office.Interop.Outlook.Items.Find() vs LINQ
- How to extract the data from this xml document
- OrderBy virtual property in entity framework
- LINQ to Entities does not recognize the method 'System.String get_Item(System.String)' method
- Working with 1-Result-Linq with For Each? Any alternative?
- How can I add a specific dictionary entry to a Linq Expression?
- Are LINQ expressions an acceptable way to manipulate data in F#?
- how to translate method call into lambda expression
- How to get dynamic type property?
- Dynamic Where Clause in LINQ Syntax error
- Suppression State Error CS0266 When Selecting Data From Database Using LINQ
- Get directory files, ordered by a date which is part of the file name
- WPF: How do I validate that a number from memory is not duplicated in db table?
- C# Get index from List where value is in a range
- C# multidimensional array into array
- SQL "IN" CLAUSE Performance issue
- Select multiple joined tables into multiple variables in SQL queries or LINQ
- LINQ Find Null Objects in List
- How can i group by in Linq?
- Removing multiple entries in dictionary collection using Linq
- Sum Dictionary value by Key
- Apply lambda expression for specific indices in list c#
- Linq: filtering a list by time spans in another list