I created objects from CRM as follows:
CrmSvcUtil.exe /url:http://<servername>/<organizationname>/XRMServices/2011/Organization.svc /out:<outputfilename>.cs /username:<username> /password:<password> /domain:<domainname> /namespace:CRMEntities /serviceContextName:XrmServiceContext
For serviceContextName, I set XrmServiceContext . I want to get some object from CRM using the following code:
var context = new XrmServiceContext(myorgserv); var marketingList = context.ListSet.Where(item => item.Id == new Guid("SOME GUID"));
And I get the error message:
Message "Unable to cast object of type 'Microsoft.Xrm.Sdk.Entity' to type 'CRMEntities.List'."
After "add to watch", I saw that each set of entities in the context has the same message. What did I miss?
source share