Say i need to filter a generic list with a dynamic query (List<string> l; var x = l.Where(*dynamic query*))
How would i do this using LINQ? (Currently using a row filter on a dataview)
I've seen a posting by scott g: but it appears to not work with objects that use IEnumerable (generic lists included)
Can anyone offer any ideas?