执行XRM实体时出现错误“对象引用未设置为对象的实例”

时间:2018-10-29 09:18:08

标签: c# .net dynamics-crm dynamics-crm-365 xrm

我已经在cmd提示符下使用SDK生成了XRM类文件。

我已经为解决方案安装了软件包Microsoft.CrmSdk.Xrm.Tooling.CoreAssembly,然后开始在解决方案中使用XRM文件实体来查询数据。

在Local中从Dynamics CRM 365在线查询数据时,如果我调试了所有有效文件,但是如果在PROD环境中发布和部署了该文件,则会得到error

var dict = new Dictionary<string, string>();
using (var conn = getconnection())
{
  e2 = "Connected: "+ conn.ConnectedOrgFriendlyName;
  _orgService = (IOrganizationService)conn.OrganizationWebProxyClient != null 
    ? (IOrganizationService)conn.OrganizationWebProxyClient 
    : (IOrganizationService)conn.OrganizationServiceProxy;

  e3 = "Initiatedsss";
  using (var service = new XrmContext(conn))
  {
    crmOpp = service.OpportunitySet.Where(x => x.new_OppHubspotid == hubSpotId).ToList();
  }
}
  

对象引用未设置为对象的实例。
StackTrace   : 在   HubSpot_CRMIntegration.HubSpotDealService.GetDataCrmconnection(String   hubSpotId)日期:2018年10月30日上午6:10:03 HubspotID:   03b0b3db-22d6-e811-a954-000d3a59746e FrameCount:1错误行:0,GetDataCrmconnection在file:line:column:0:0错误1:输入错误2:已连接错误:已连接:Anexinet开发测试中的偏移量807:   CRM:错误3:启动错误4:错误5

0 个答案:

没有答案