Dynamics crm + 如何在插件代码中根据类型动态获取属性值

如何解决Dynamics crm + 如何在插件代码中根据类型动态获取属性值

我有以下要求。

我需要对同一实体的多个记录执行每个字段的总和但是在执行总和时,我还需要检查类型并按顺序转换它们。例如,对于整数转换为 Int,对于 Decimal 转换为十进制。还有一些值也是别名值。我正在寻找一个通用函数,我可以为别名字段和直接字段调用它,它将根据类型返回值

下面编写的代码的背景-

字段值存储在AttributeList中的格式-

AttributeList = { "price ","quantity","contact.revenue","opportunity.sales"}
  • 价格、数量 - 我们正在查询的主要实体的字段

  • contact.revenue,chance.sales - 别名实体的字段, 附加实体名称以了解它是哪个实体的字段

以下是我迄今为止尝试过的代码 -

我的属性列表中只有小数和整数字段。

private void calculate(List<string> attributeList,List<Entity> mainEntityList,Guid targetId,Guid oppId,Guid contactId)
{

    var mainentity = new mainEntity();
    mainentity.Id = targetId;

    var opportunity = new Opportunity();
    opportunity.Id = oppId;

    var contact = new Contact();
    contact.Id = contactId;


    foreach (var attribute in attributeList)
    {

        var fieldSum = new decimal(0);
        int intFieldSum = 0;
        bool attributeFound = false;

        foreach (var entity in mainEntityList)
        {
            
            if (entity.Contains(attribute))
            {
                var type = entity[attribute].GetType().Name;
                attributeFound = true;

                switch (type)
                    {
                        case "AliasedValue":
                        var aliasedFieldValue = entity.GetAttributeValue<AliasedValue>(attribute);
                        if (aliasedFieldValue.Value.GetType().Name == "Decimal")
                        {
                        decimalFieldSum += (decimal)aliasedFieldValue.Value;
                        }
                        else
                        {
                        intFieldSum += (int)aliasedFieldValue.Value;
                        }
                        break;
                        case "Decimal":
                        decimalFieldSum += entity.GetAttributeValue<decimal>(attribute);
                        break;
                        case "Int32":
                        intFieldSum += entity.GetAttributeValue<int>(attribute);
                        break;
                        default:
                            break;
                    }
            }
        }

        if (attributeFound)
        {
            if (attribute.Contains("opportunity"))
            {
                opportunity[attribute] =  decimalFieldSum != 0 ? decimalFieldSum : intFieldSum; 
            }
            else if (attribute.Contains("contact"))
            {
                contact[attribute] = decimalFieldSum != 0 ? decimalFieldSum : intFieldSum; 
            }
            else
            {
                mainentity[attribute] = decimalFieldSum != 0 ? decimalFieldSum : intFieldSum; 
            }
        }
    }

    service.update(opportunity);
    service.update(contact);
    service.update(mainentity);
}

任何帮助将不胜感激。

解决方法

只需稍微编辑您的代码。

...

var fieldSum = new decimal(0);
foreach (var entity in mainEntityList)
{
    fieldSum += GetAttrValue(entity,attribute);
}

...

您可以使用此函数计算十进制类型的 fieldSum 变量。

private decimal GetAttrValue(Entity entity,string attribute)
{
    var attrValue = new decimal(0);
    
    if (!entity.Contains(attribute) || entity.Attributes[attribute] == null)
    {
        return attrValue;
    }
    
    var type = entity.Attributes[attribute].GetType().Name;
    switch (type)
    {
        case "AliasedValue":
            var aliasedFieldValue = entity.GetAttributeValue<AliasedValue>(attribute);
            attrValue = type == "Decimal" ? (decimal)aliasedFieldValue.Value : (int)aliasedFieldValue.Value;
            break;
        case "Decimal":
            attrValue = entity.GetAttributeValue<decimal>(attribute);
            break;
        case "Int32":
            attrValue = entity.GetAttributeValue<int>(attribute);
            break;
        default:
            break;
    }
    return attrValue;
}

另一方面,如果您只需要一个通用函数,该函数将为属性返回十进制或整数值,您可以使用它

private T GetAttrValue<T>(Entity entity,string attribute)
{
    if (!entity.Contains(attribute) || entity.Attributes[attribute] == null)
    {
        return default(T);
    }

    T result;
    var type = entity.Attributes[attribute].GetType().Name;
    if (type == "AliasedValue")
    {
        var aliasedFieldValue = entity.GetAttributeValue<AliasedValue>(attribute);
        result = (T)aliasedFieldValue.Value;
    }
    else
    {
        result = entity.GetAttributeValue<T>(attribute);
    }
    return result;
}

--更新--
所以,如果我理解你的要求,这里是整个代码。
首先添加这个类。

public class AttributeInfo
{
    public string Name { get; set; }

    public Type Type { get; set; }

    public decimal DecimalSum { get; set; } = new decimal(0);

    public int IntSum { get; set; } = 0;
}

并添加此功能

private void SetValue(Entity entity,AttributeInfo attributeInfo)
{
    if (entity.Contains(attributeInfo.Name))
    {
        switch (attributeInfo.Type.Name)
        {
            case "Decimal":
                entity[attributeInfo.Name] = attributeInfo.DecimalSum;
                break;
            case "Int32":
                entity[attributeInfo.Name] = attributeInfo.IntSum;
                break;
            default:
                break;
        }
    }
}

这就是你的Calculate函数

private void Calculate(List<string> attributeList,List<Entity> mainEntityList,Guid targetId,Guid oppId,Guid contactId)
{
    var mainentity = new mainEntity();
    mainentity.Id = targetId;

    var opportunity = new Opportunity();
    opportunity.Id = oppId;

    var contact = new Contact();
    contact.Id = contactId;

    var attributesInfo = new List<AttributeInfo>();
    foreach (var attribute in attributeList)
    {
        var attributeInfo = new AttributeInfo
        {
            Name = attribute
        };

        foreach (var entity in mainEntityList)
        {
            if (entity.Contains(attribute))
            {
                attributeInfo.Type = entity[attribute].GetType();
                switch (attributeInfo.Type.Name)
                {
                    case "AliasedValue":
                        var aliasedFieldValue = entity.GetAttributeValue<AliasedValue>(attribute);
                        if (aliasedFieldValue.Value.GetType().Name == "Decimal")
                        {
                            attributeInfo.DecimalSum += (decimal)aliasedFieldValue.Value;
                        }
                        else
                        {
                            attributeInfo.IntSum += (int)aliasedFieldValue.Value;
                        }
                        break;
                    case "Decimal":
                        attributeInfo.DecimalSum += entity.GetAttributeValue<decimal>(attribute);
                        break;
                    case "Int32":
                        attributeInfo.IntSum += entity.GetAttributeValue<int>(attribute);
                        break;
                    default:
                        break;
                }
            }
        }

        attributesInfo.Add(attributeInfo);
    }

    foreach (var attributeInfo in attributesInfo)
    {
        if (attributeInfo.Type != null)
        {
            SetValue(mainentity,attributeInfo);
            SetValue(opportunity,attributeInfo);
            SetValue(contact,attributeInfo);
        }
    }

    service.update(mainentity);
    service.update(opportunity);
    service.update(contact);
}

我应该说 calculate 函数的结构对我来说仍然很奇怪。但是,这里我尽量保持主要结构。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?