Is there a pattern using Linq to dynamically create a filter?
I have the need to create custom filtering on a list, in the past I would just dynamically create the SQL...it doesn't seem like this is possible with Linq.
|
Is there a pattern using Linq to dynamically create a filter? I have the need to create custom filtering on a list, in the past I would just dynamically create the SQL...it doesn't seem like this is possible with Linq.
| ||||
|
feedback
|
|
Check out the Dynamic Linq Library from ScottGu's blog:
| |||||
feedback
|
|
Dynamic Linq is one way to go. It may be overkill for your scenario. Consider:
| |||||
|
feedback
|
|
something like this?
that would create a sql statement like
| |||
|
feedback
|