Is it possible to create Linq Queries at runtime. Using an xml rule which can be translated to a Linq Query.
|
1
|
Is it possible to create Linq Queries at runtime. Using an xml rule which can be translated to a Linq Query.
|
||
|
|
|
|
Ultimately, yes; but it isn't simple and you'll need to either:
If you want to go the first option, then you need to create your own lambdas; imagine, for example, that you have something like (making things up here...):
Then you would need to do something like:
The above (for each "Add" element) creates a lambda that filters the given member to the supplied value (assumes string, but you could of course do any conversions etc). All the other operations are availble, but this shows the minimal effect. Note that |
||
|
|
|
|
Essentially you need to build an expression tree. There's a brief explanation here as an answer to another question about creating expression trees from XML. |
||
|
|
|
|
You can use Dynamic Linq. |
||
|
|
|
|
Yes. I'm not going to show you how to parse XML, but you can attach the Linq Extension methods like this:
|
||
|