我有一个系统,实体A通过连接C连接到B.不同类型的连接具有不同的属性。
在使用Microsoft Dynamics CRM 2011 SDK的C#中,如何查找与刚刚更新的记录A相关的所有连接(C),然后使用info更新连接另一端的记录B.从连接?每条记录A都有多个连接。
谢谢
答案 0 :(得分:2)
如果我理解正确,您在两个实体之间有1:N连接,并且您希望确保来自一个实体的某些数据被复制(或以某种方式影响)连接的实体。
这非常简单,但你需要首先掌握一些概念,因为看起来你可能没有太多的CRM 2011编码经验(如果你这样做,我道歉)。
以下是如何开始编写插件的快速指南:
SDK\tools\...
)(2010年或2012年)DataContext
类型类,我认为LINQ查询可以让生活更轻松。您可以使用SDK\bin\crmsvcutil.exe
生成代理类,只需确保添加/serviceContextName
参数即可。将生成的文件添加到项目中。我会按如下方式编写插件:
ctx.new_bSet.Where(b => new_aid.Id == aEntity.Id).ToArray();
行)查询所有受影响实体的CRM。修改强>
以下是基于CRM Developer Tools创建的预生成类的示例代码,介绍插件的外观:
protected void ExecutePostAccountCreate(LocalPluginContext localContext)
{
if (localContext == null)
{
throw new ArgumentNullException("localContext");
}
IPluginExecutionContext context = localContext.PluginExecutionContext;
Entity postImageEntity = (context.PostEntityImages != null && context.PostEntityImages.Contains(this.postImageAlias)) ? context.PostEntityImages[this.postImageAlias] : null;
// TODO: Implement your custom Plug-in business logic.
//create a data context - DataContext is the name I use - it might be different depending on your usage of crmsvcutil!
var ctx = new DataContext(localContext.OrganizationService);
//use the post image to get a strongly typed object
//you can use aEntity to get whatever information you need for updating other entities
var aEntity = postImageEntity.ToEntity<new_A>();
//get the related entities (add using System.Linq!)
//I'm assuming the relationship is A (1:N) B
var bEntities = ctx.new_bSet.Where(e => e.new_aId.Id == aEntity.Id).ToArray();
foreach (var bEntity in bEntities)
{
//set values for each of the entities here
//for example: bEntity.new_field1 = aEntity.new_fieldBase;
ctx.UpdateObject(bEntity);
}
ctx.SaveChanges();
}
答案 1 :(得分:0)
首先,您知道必须为记录A创建更新插件,因此每当记录A更新时,都会触发插件。然后在插件中,您需要使用linq或任何其他检索方法进行连接,以通过查找连接实体中的GUID来获取与记录A相关的连接,它应该是“Record1Id”。当你得到连接然后你可以使用GUId作为记录B它应该是“Record2ID”。所以当你得到记录B然后根据你想要的表格已经获取的连接更新它并更新它。
如果您使用LINQ和早期绑定
,以下代码将为您提供与recordA相关的所有连接var connections = (from conn in context.CreateQuery<Connection>()
where (conn.Record1Id.Id == recordAid
select conn).ToList();
如果有连接,您可以为连接创建任何其他过滤器! 希望它有所帮助