我已经找到了类似的问题,但答案对我没有用,所以我想知道是否有关于这个主题的任何新信息。
我想要做的是为OptionSetValue赋值null。 到目前为止我尝试过的:
someEntity.Attributes [“myfield”] = 899270000; //作品
someEntity.Attributes [“myfield”] = null; //不工作
提前致谢。
答案 0 :(得分:1)
否则
someEntity["myfield"] = null;
service.Update(someEntity);
或强效等价物:
someEntity.myfield = null;
service.Update(someEntity);
应该明确地工作。