Question

Does anyone know of any libraries that one can use to parse a SQL query and build up a linq expression which can then be compiled and used against linq to objects?

This approach only needs to work for simple queries, for complex ones I can write a hardcoded custom query

UPDATE: I've found something called NQuery which should do the trick for me http://nquery.codeplex.com/ so don't waste your time answering!

Était-ce utile?

La solution

There is a project call [SqlLinq] (https://github.com/dkackman/SqlLinq) which converts SQL into c# Expression Trees, and evaluates them.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top