I'd like to pass a string which is a LINQ query to a function and have it execute the query and return the appropriate results. Are there any samples for this? The key is that the query is not known until runtime. UPDATE: I am not looking to do SQL queries or queries against a database. I am doing in memory queries against some collection and don't know the query until runtime. CHALLENGE: Pass the query in as string type and execute it against an object array or Dictionary For instance Class DoHick
Read More...