Reputation: 261
This is basically a "can it be done" question.
If I have a List<SomeObject>
is there some way to convert a user's string input into a query that can be run against the List<>
? The most obvious example would be having the user enter an SQL query and then running that query on the List<>
. I'm not necessarily interested in executing SQL, but I'm wondering if there is some way to run a linq query without hard coding it. I don't really care what the syntax is like.
Upvotes: 1
Views: 119