I'm using CrmSvUtil this way:

crmsvcutil.exe /url:http://crm2011/MyTestOrg/XRMServices/2011/Organization.svc /out:GeneratedCode.cs /namespace:Xrm /serviceContextName:XrmDataContext

And the output contains thousands of business objects and this context class:

[System.CodeDom.Compiler.GeneratedCodeAttribute("CrmSvcUtil", "5.0.9688.1533")]
public partial class XrmDataContext : Microsoft.Xrm.Sdk.Client.OrganizationServiceContext

But looking at the samples (namely .\sdk\walkthroughs\portal\consoleappwalkthrough) I clearly can see there that the context class should be derived from a more mighty sub class of OrganizationServiceContext -> CrmOrganizationServiceContext:

[System.CodeDom.Compiler.GeneratedCodeAttribute("CrmSvcUtil", "5.0.9688.583")]
public partial class XrmServiceContext : Microsoft.Xrm.Client.CrmOrganizationServiceContext

I definitely need CrmOrganizationServiceContext because only then I have the constructors I need. So what I'm doing wrong or which setting did I miss?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Check out the parameters given @ the web version of that SDK sample. They will generate the class you're looking for.

CrmSvcUtil.exe /codeCustomization:"Microsoft.Xrm.Client.CodeGeneration.CodeCustomization, Microsoft.Xrm.Client.CodeGeneration" /out:Xrm\Xrm.cs /url:http://Crm/Contoso/XRMServices/2011/Organization.svc /domain:CONTOSO /username:administrator /password:pass@word1 /namespace:Xrm /serviceContextName:XrmServiceContext
link|improve this answer
I love "undocumented" CLI parameters -- maybe there even is one for creating one class per file like it was possible with v4? R# is dying on these 5MB C# files. – springy76 Jan 26 at 9:53
@springy76 You can create an extension for the CrmSvcUtil utility. More information here – Emzil Jan 26 at 11:07
As was mentioned, you can filter out the default Xrm.cs file to only include the entities you're interested in to some degree of satisfaction. I mention a few ways to do this in a recent question I asked. stackoverflow.com/questions/8946223/… – Peter Majeed Jan 26 at 15:09
@springy76: And yeah - these undocumented features are killing me. I don't see the specs for the /codeCustomization parameter anywhere, but it's things like this that we need. – Peter Majeed Jan 26 at 15:10
Just a note but this string only works with Dynamics CRM 2011; you have to remove /serviceContextName:XrmServiceContext to make it work for CRM 4.0. – Russ C Feb 2 at 13:09
feedback

Your Answer

 
or
required, but never shown

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