NotSupportedException: The method 'Join' is not supported.
I create a little c# expression with a join statement on a CRM database. I received the error:
NotSupportedException: The method 'Join' is not supported.
is this a CRM related error? I get the same error whether it is an expression, statement or program
NotSupportedException: The method 'Join' is not supported.
is this a CRM related error? I get the same error whether it is an expression, statement or program
Comments
Try using navigation properties if they exist or .AsEnumerable() to retrieve data sets separately and do the join locally.
The latter will result in a lot more requests, more data being transferred and potentially lack of results due to late filtering and paging.
Example navigation property: Request log: Example .AsEnumerable(): Request log: (due to max. 200 items fetched per request and no paging, the result is incomplete)