How to convert String to LINQ query?
LINQ
2
Posts
2
Posters
6
Views
1
Watching
-
Hi, I need to convert a string to linq query. For example, the string could be like- string x = from p in where p.id = select p; (Note that the text enclosed in <> are actual values) Is it possible to convert this string into a IQueryable type? If yes, how?
-
Hi, I need to convert a string to linq query. For example, the string could be like- string x = from p in where p.id = select p; (Note that the text enclosed in <> are actual values) Is it possible to convert this string into a IQueryable type? If yes, how?