Dynamic CRM插件中获取Entity属性值问题

打印 上一主题 下一主题

主题 547|帖子 547|积分 1641

插件中获取Entity不同类型字段时稍有区别,一般用如下两种方式:
  1. Entity targetEntity = (Entity)context.InputParameters["Target"];
  2. 1.decamil val = Convert.ToDecimal(targetEntity["new_cmremainingamount"]);
  3. 2.decamil val =  targetEntity.GetAttributeValue<decimal>("new_cmremainingamount");
复制代码
即通过强转或者GetAttributeValue方式,第一种方式不建议使用,赋值时用这种方式会比较简洁一些,但在获取值时,直接拿,如果值为空则会抛出空指针异常,用第二种方式,如果值为空则返回null,不为空就正常返回值。
附上CRM中字段类型:
  1. 货币:new Money(Decimal)
  2. 查找:new EntityReference(objecttypename,Guid)
  3. 下拉:new OptionSet(Int)
  4. 选项集:false/true
  5. 时间:DateTime
  6. 整数:Integer
  7. 十进制数:Decimal
  8. 浮点数:Double
  9. 单行/多行文本:String
复制代码
 
但在实际插件代码中,去判断Moeny类型时,做一些直接的计算想一行代码设置值,就最好还是先判断一下entity中有没有这个字段,Entity实体通过查询返回或者插件的当前操作实体都是只返回有值的字段,没有值的字段不会再Entity中,所以使用以下方式:
  1. if (!targetEntity.Contains("new_cmremainingamount")&& !targetEntity.Contains("new_partsremainingamount"))
  2. {
  3.    return;
  4. }
复制代码
当然上面这种很常见,结合到一行代码中如下:
  1. decimal singleVolume = 0;
  2. decimal singleWeight = 0;
  3. singleVolume = !detailEntity.Contains("new_singlevolume") ? 0 : detailEntity.GetAttributeValue<decimal>("new_singlevolume");
  4. singleWeight = !detailEntity.Contains("new_singleweight") ? 0 : detailEntity.GetAttributeValue<decimal>("new_singleweight");
  5. decimal amountBalance = 0;
  6. foreach (Entity en in entityCollection.Entities)
  7. {
  8.   amountBalance += !en.Contains("new_cmremainingamount") ? 0 : en.GetAttributeValue<Money>("new_cmremainingamount").Value;
  9. }
  10. 或者也可以通过?.的方式
  11. amountBalance += en.GetAttributeValue<Money>("new_cmremainingamount")?.Value  ?? 0;
复制代码
 

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

万有斥力

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表