linqでCRM2011ビュー(savedquery)を使用することは可能ですか?つまり、私はこのようなことをすることができます:
IEnumerable<Opportunity> GetOpportunites(CrmOrganizationServiceContext context, string viewName, Guid customerId)
{
var view = context.CreateQuery<SavedQuery>().FirstOrDefault(q => q.Name == viewName);
if(view!=null)
return from Opportunity op in view
where op.CustomerId.Id == customerId
select op;
return new List<Opportunity>();
}