想要通过如下代码更新命令中的内容项:
var item = _contentManager.Get(model.Id);
item.As<TitlePart>().Title = model.Title;
_contentManager.UpdateEditor(item, this);
但是我没有编辑器在指挥。我可以调用所有 pars 存储库的 Update 方法,但它看起来像错误的方式,这里的正确方式是什么?
想要通过如下代码更新命令中的内容项:
var item = _contentManager.Get(model.Id);
item.As<TitlePart>().Title = model.Title;
_contentManager.UpdateEditor(item, this);
但是我没有编辑器在指挥。我可以调用所有 pars 存储库的 Update 方法,但它看起来像错误的方式,这里的正确方式是什么?