Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MS CRM 2011 CrmSvcUtil gives error

Im trying to use the CrmSvcUtil with the following command:

C:\TMP\sdk\microsoft.xrm\tools>crmsvcutil.exe /connectionString:"Authentication Type=AD; Server=myip; User ID=myusername; Password=xxx" /generate:cs /out:schema.cs /namespace:Xmr dataContextClassName:XrmServiceContext

And this works until I Get to a line that throws a exception:

Building source code for the entity named 'subscriptionclients'...
Building source code for the entity named 'subscriptionsyncinfo'...
Building source code for the entity named 'subscriptiontrackingdeletedobject'...

Unhandled Exception: System.InvalidOperationException: Sequence contains no matching element
   at System.Linq.Enumerable.Single[TSource](IEnumerable`1 source, Func`2 predicate)
   at CrmSvcUtil.Generator.GenerateEntityCode(XElement entityElement, String outputNamespace, DirectoryInfo outputDirectory, Boolean useLogicalNames, StreamWriter outputWriter)
   at CrmSvcUtil.Generator.Generate(IDictionary`2 arguments)
   at CrmSvcUtil.Program.Main(String[] args)

Anyone know what this means? When this exception is thrown I still have a lot of entities generated but not all of them and this makes my cs file broken

like image 623
Marthin Avatar asked Nov 02 '11 13:11

Marthin


2 Answers

Use CrmSvcUtil from the 2011 SDK (which had not been released yet when you asked this question).

like image 153
springy76 Avatar answered Oct 21 '22 19:10

springy76


So after a few months of doing other stuff I got back to this problem and find the solution via this blog. http://blog.abodit.com/2011/03/crmsvcutil-exe-with-microsoft-dynamics-crm-2011-online-problem/

like image 2
Marthin Avatar answered Oct 21 '22 21:10

Marthin