gpt4 book ai didi

c# - 将独特的实体子组件添加到 Dynamics CRM 解决方案

转载 作者:行者123 更新时间:2023-11-30 15:18:14 24 4
gpt4 key购买 nike

我正在开发一个实用程序,在该实用程序中,我正在根据提供的目标解决方案创建回滚解决方案。到目前为止,该实用程序运行良好,它读取要部署在目标组织上的解决方案,并在目标组织上创建一个新的回滚解决方案,其中包含所有必要的组件,如来自目标的实体、网络资源、SDK 步骤、安全角色、工作流等组织。我已使用 SDK 的 AddSolutionComponentRequest 类来实现此目的。

当该实用程序在解决方案中检测到一个实体时,它只是将整个实体与所有字段、 View 、表单等所有元数据一起添加。

CRM 2016 引入了解决方案分割的功能,通过它我们可以专门添加那些已更改的实体组件。

我如何在我的实用程序中利用此功能,因为我还没有找到任何允许我将特定实体组件添加到解决方案的 API 方法。

最佳答案

对于实体类型的分段解决方案组件,必须将 DoNotIncludeSubcomponents 选项设置为 true 添加到解决方案中。然后,可以将实体的不同部分一一添加到解决方案中。

将实体“account”添加到解决方案“Test”的示例,其中只有属性“accountnumber”:

private static EntityMetadata RetrieveEntity(string entityName, IOrganizationService service)
{
var request = new RetrieveEntityRequest
{
LogicalName = entityName,
EntityFilters = EntityFilters.All
};

return ((RetrieveEntityResponse)service.Execute(request)).EntityMetadata;
}

private static void AddEntityComponent(Guid componentId, int componentType, string solutionName, IOrganizationService service)
{
var request = new AddSolutionComponentRequest
{
AddRequiredComponents = false,
ComponentId = componentId,
ComponentType = componentType,
DoNotIncludeSubcomponents = true,
SolutionUniqueName = solutionName
};

service.Execute(request);
}

IOrganizationService service = factory.CreateOrganizationService(null);

EntityMetadata entity = RetrieveEntity("account", service);
AddEntityComponent(entity.MetadataId.Value, 1, "Test", service);
AddEntityComponent(entity.Attributes.First(a => a.LogicalName == "accountnumber").MetadataId.Value, 2, "Test", service);

关于c# - 将独特的实体子组件添加到 Dynamics CRM 解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44623563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com