score:2

Accepted answer

backlinq (http://www.raboof.com/projects/backlinq/) is a project which implements a number of linq operations against .net 2.0. the project is open source and they have posted the source code for their unit tests (http://backlinq.googlecode.com/svn/trunk/test/backlinq.tests/enumerablefixture.cs). you may be able to adapt these tests for your needs.

there is also a codeplex hosted project called 'a custom implementation of the .net standard query operators from linq' (http://linqsqo.codeplex.com/), which includes the source for a similar test suite.

score:0

you may be looking for jon skeet's edulinq.

note that he's writinga linq to objects implementation; some of his tests will not be applicable to db-based implementations.


Related Query

More Query from same tag