I could not find any resources online with examples of using LINQKIT with WCF data services. Is it possible ? I tried to do that, but it fails in ExpressionVisitor class in method Visit with error - unhandled expression type 10000.
throw new Exception (string.Format ("Unhandled expression type: '{0}'", exp.NodeType));
Is there any alternative to this.
Example of expression is as given below. It build successfully but gives above error at run time.
DataServiceQuery<ClassName> query = (DataServiceQuery<ClassName>)
(from c in data.<ClassName>.AsExpandable()
where c.<ChildClass>.Any(SamplePredicate.Compile())
select c);