在 Dynamics CRM 插件中将 OptionSetValue 设置为 null
Set OptionSetValue to null in Dynamics CRM Plugin
我已经找到了一个类似的问题,但答案对我不起作用,所以我想知道是否有关于此主题的任何更新信息。
我想要做的是将 null 分配给 OptionSetValue。
到目前为止我尝试了什么:
someEntity.Attributes["myfield"] = 899270000; //有效
someEntity.Attributes["myfield"] = 空; //不工作
- someEntity.Attributes["myfield"] = 0; //不工作
- someEntity.Attributes["myfield"] = -1; //也不工作
提前致谢。
正在做
someEntity["myfield"] = null;
service.Update(someEntity);
或等效的强风格:
someEntity.myfield = null;
service.Update(someEntity);
应该绝对有效。
我已经找到了一个类似的问题,但答案对我不起作用,所以我想知道是否有关于此主题的任何更新信息。
我想要做的是将 null 分配给 OptionSetValue。 到目前为止我尝试了什么:
someEntity.Attributes["myfield"] = 899270000; //有效
someEntity.Attributes["myfield"] = 空; //不工作
- someEntity.Attributes["myfield"] = 0; //不工作
- someEntity.Attributes["myfield"] = -1; //也不工作
提前致谢。
正在做
someEntity["myfield"] = null;
service.Update(someEntity);
或等效的强风格:
someEntity.myfield = null;
service.Update(someEntity);
应该绝对有效。