We are trying to use early bound types in a CRM2011 plugin. To enable this it appears we need to either add a ProxyTypesBeavior(), or set .EnableProxyTypes. However, both of these properties apply to an OrganizationServiceProxy class, and do not exist on the IOrganizationService interface.

So if we are using the following code to get the organization service, how are we meant to obtain a proxy class to set the above properties on?

var serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
var service = serviceFactory.CreateOrganizationService(context.UserId);

Thanks

Matt

link|improve this question

69% accept rate
feedback

3 Answers

Use the following:

(service as Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy).EnableProxyTypes();
link|improve this answer
feedback

Write like this,

IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.