Translate Linq Expression to any existing Query structure?
Posted
by fredlegrain
on Stack Overflow
See other posts from Stack Overflow
or by fredlegrain
Published on 2010-03-12T09:44:00Z
Indexed on
2010/03/12
9:47 UTC
Read the original article
Hit count: 226
LINQ
I have some kind of "data engine" between multiple "data consumer" processes and multiple "data storage" sources. I'd like to provide Linq capabilities to the "data consumer" and forward the query to the "data storage". The forwarded query should be some structured query (like, let's say, NHibernate Criteria).
Is there any existing structured query library that could allow me to "just" translate a Linq Expression to such a structured query?
© Stack Overflow or respective owner