每当用户创建帐户时,我试图填充系统用户实体中的字段。在尝试检索系统用户实体以便填充其属性时,我不断出现错误。我的代码如下:
public void Execute(IServiceProvider serviceProvider)
{
ITracingService tracingservice = (ITracingService)serviceProvider.GetService(typeof(ITracingService));
IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));
IOrganizationServiceFactory factory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = factory.CreateOrganizationService(context.InitiatingUserId);
if (context.InputParameters.Contains("Target") &&
context.InputParameters["Target"] is Entity)
{
try
{
//Get entity that fired plugin
Entity entMain = (Entity)context.InputParameters["Target"];
//Make a String for the last activity entity
String strLastEntity = "";
//Make the entity for the user entity
Entity entUser = (Entity)service.Retrieve("systemuser", context.InitiatingUserId, new ColumnSet(new String[] { "new_lastactivityentity" }));
//Get the entity type that fired the plugin and set it to the right field for the user entity
if (entMain.LogicalName.Equals("account"))
{
strLastEntity = entMain.LogicalName;
entUser["new_lastactivityentity"] = strLastEntity;
}
}
catch (Exception ex)
{
tracingservice.Trace("FollowupPlugin: {0}", ex.ToString());
throw;
}
}
}
错误是:无法加载文件或程序集"PluginRegistration, Version=2.1.0.1,文化=neutral, PublicKeyToken=null"或其依赖项之一。系统找不到指定的文件
有人能解释一下如何获得系统用户以便我可以更新其属性吗?
这是因为您有一个未安装在服务器上的程序集引用,特别是PluginRegistration
。
您可以将该dll放在服务器上的GAC中,但是这不适用于CRM Online(或者我相信在沙盒注册中)。
PluginRegistration
是对插件注册工具中使用的Microsoft程序集的引用吗?一般来说,你不需要在你的项目中引用它,所以你可以尝试删除引用。