我想創建帳戶實體的對象。下面是示例代碼,我需要實現。創建早期綁定實體類
Account earlyAccount = new Account();
earlyAccount.Name = "Early Bound Account";
Guid earlyAccountId = service.Create(earlyAccount);
要使用「帳戶」作爲實體,我需要做什麼?我是否需要導入任何其他名稱空間?
我想創建帳戶實體的對象。下面是示例代碼,我需要實現。創建早期綁定實體類
Account earlyAccount = new Account();
earlyAccount.Name = "Early Bound Account";
Guid earlyAccountId = service.Create(earlyAccount);
要使用「帳戶」作爲實體,我需要做什麼?我是否需要導入任何其他名稱空間?
爲了生成Early Bound類,您需要使用CRM SDK中包含的CrmSvcUtil.exe。
但是,我強烈建議使用XrmToolBox中的Early Bound Generator,它有幾個選項來生成類,你不需要處理命令行。
使用此命令在MS-DOS /開發人員命令提示符下VS20xx
CrmSvcUtil.exe /url:http://serverName/organizationName/XRMServices/2011/Organization.svc /out:outputFilename.cs /username:username> /password:password /domain:domainName
您應該添加更多的細節,你的問題。例如。實際上出了什麼問題?你做了什麼? – nozzleman