tags:

views:

101

answers:

4

I am on my way of linq learning and would like to see how linq is applied in the real world projects. So is there anyone who can suggest some open source C# and VB projects that employs Linq technology within?

+1  A: 

Though I have not checked it yet, I think SubSonic is one in my TODO List to study. I assume it will have lot of Linq techniques.

Mahin
+2  A: 

I have found MOQ a very interesting project. It takes full advantage of .NET 3.5 (i.e. Linq expression trees) and C# 3.0 features (i.e. lambda expressions).

Rohan West
+1  A: 

I think NHibernate.Linq will be a good lesson.

you can download the code here

Moshe Levi
+1  A: 

Whereas authors of open source application often want to develop crossplatform application they tend to use .Net/Mono compatible features. The number of "LINQ-equipped" open source application will increasing after normal implementation of LINQ in Mono.

macropas