views:

14

answers:

2

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
A: 

Maybe you need a LINQPad?

gandjustas
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