CRM 插件奇怪的报错
Posted HelloHongFu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRM 插件奇怪的报错相关的知识,希望对你有一定的参考价值。
CRM插件,数据库方式注册。报错
找不到方法:“Void Microsoft.Xrm.Sdk.Entity..ctor(System.String, System.Guid)”。
这个错误让人摸不着头脑到底是那里错了,经过一行一行调试,发现要使用如下构造函数,不管代码执行不执行就会报这个错误
var myEntity = (EntityReference)context.InputParameters["EntityMoniker"];
target = new Entity(myEntity.LogicalName, myEntity.Id);
改成如下则不报错
var myEntity = (EntityReference)context.InputParameters["EntityMoniker"];
target = new Entity();
target.Id = myEntity.Id;
target.LogicalName = myEntity.LogicalName;
以上是关于CRM 插件奇怪的报错的主要内容,如果未能解决你的问题,请参考以下文章