怎样创建一个dynamics 365 CRM online plugin
Posted TheMiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样创建一个dynamics 365 CRM online plugin 相关的知识,希望对你有一定的参考价值。
Golden Rules
1. Platform only passes Entity attributes to Plugin that has change of data.
2. If the user does not enter any value into attribute, the attribute is not avaible in AttributeCollection of Entity.
3. Always check if attribute is present in the collection before you use it.
介于上面三条rules, 我们来改动一下上篇博客中的问题.
如果用户firstName 没有输入, 将会以下面截图的内容一样报错.
为了避免这个问题, 我们需要对代码做一系列的修改.
我们要在代码上面做null check
在register tool 上选中之前创建的assembly, 并且勾选update,做更新.
我们这次再测试一下创建新的contact.
这时候可能有人会问到, last name 为什么不检测呢? lastName 是必填项, 不必在代码中再做检查.
以上是关于怎样创建一个dynamics 365 CRM online plugin 的主要内容,如果未能解决你的问题,请参考以下文章
Dynamics 365 CRM Connected Field Service 自动发送command
创建一个dynamics 365 CRM online plugin (Not finished)
创建一个dynamics 365 CRM online plugin - Images in Plugin
如何通过 Dynamics 365 CRM 中的 C# 插件填充查找字段
创建一个dynamics 365 CRM online plugin - Asynchronous Plugins
创建一个dynamics 365 CRM online plugin - plugin当中的Impersonation角色