Hi Bo Hessner,
dynamic LINQ is supported, but the example given by you must be slightly rewritten:
var getIt = scope.Extent<Bo>()
.Where("
SkuUid == @SkuUid and SalesType == @SalesType", 1234, 5678);
So the entire query cannot be made up by string concatenation, but string pieces must be given along with the parameters in the right order.
You might want to check this link also :
Dynamic LINQ .
Kind regards,
Alexander
the Telerik team