Is there any way to write linq statements while project is running?
+2
A:
As linq statements involve Lambda expressions, which are a compiler feature, I don't think so.
Femaref
2010-09-26 12:59:02
this won't allow you to execute LINQ statements while the program is running, LINQPad also compiles it and then runs it, as it has the same limitations. I think the OP wants to execute LINQ statements in the immidiate window in VS, which is impossible due to the involvment of lambdas.
Femaref
2010-09-26 13:06:26