I'm trying the following code..
LoadOperation<Tasks> PhasesLP = context.
Load(context.GetTasksQuery().
Where(o=> ProjectList.Where(p=> p.ProjectID == o.ProjectID).Count() == 1)
I get the following error:
Query operator 'Count' is not supported.
I want to basically be able to specify a Where In
clause instead of Where =
.
Anyone has an idea of how I can achieve this?