• 作者:流浪阿丁
  • 分类: .Net

插件中获取Entity不同类型字段时稍有区别,一般用如下两种方式:

Entity targetEntity = (Entity)context.InputParameters["Target"];
1.decamil val = Convert.ToDecimal(targetEntity["new_cmremainingamount"]);
2.decamil val =  targetEntity.GetAttributeValue<decimal>("new_cmremainingamount");

即通过强转或者GetAttributeValue方式,第一种方式不建议使用,赋值时用这种方式会比较简洁一些,但在获取值时,直接拿,如果值为空则会抛出空指针异常,用第二种方式,如果值为空则返回null,不为空就正常返回值。

附上CRM中字段类型:

货币:new Money(Decimal)
查找:new EntityReference(objecttypename,Guid)
下拉:new OptionSet(Int)
选项集:false/true
时间:DateTime
整数:Integer
十进制数:Decimal
浮点数:Double
单行/多行文本:String

 

但在实际插件代码中,去判断Moeny类型时,做一些直接的计算想一行代码设置值,就最好还是先判断一下entity中有没有这个字段,Entity实体通过查询返回或者插件的当前操作实体都是只返回有值的字段,没有值的字段不会再Entity中,所以使用以下方式:
if (!targetEntity.Contains("new_cmremainingamount")&& !targetEntity.Contains("new_partsremainingamount"))
{
   return;
}
当然上面这种很常见,结合到一行代码中如下:
decimal singleVolume = 0;
decimal singleWeight = 0;
singleVolume = !detailEntity.Contains("new_singlevolume") ? 0 : detailEntity.GetAttributeValue<decimal>("new_singlevolume");
singleWeight = !detailEntity.Contains("new_singleweight") ? 0 : detailEntity.GetAttributeValue<decimal>("new_singleweight");
decimal amountBalance = 0;
foreach (Entity en in entityCollection.Entities) 
{
  amountBalance += !en.Contains("new_cmremainingamount") ? 0 : en.GetAttributeValue<Money>("new_cmremainingamount").Value;
}
或者也可以通过?.的方式
 amountBalance += en.GetAttributeValue<Money>("new_cmremainingamount")?.Value  ?? 0;

 

转载自: https://www.cnblogs.com/adingfirstlove/archive/2022/08/18/16598725.html