The following code works fine
using (var ctx = new MyEntities()) { var devices = ctx.Devices .Where(x=> x.Devic
The dynamic linq sample can do much of this, except you drop the lambda notation:
String expression = "Device == \"TEST\"" ; //... etc .Where(expression)
Another example (from the blog):
(source: scottgu.com)