我创建了一个内容项的实例,如下所示:
ContentItem ci = _orchardServices.ContentManager.New("ContentTypeA");
_orchardServices.ContentManager.Create(ci, VersionOptions.Published);
ci.As<SomeContentPart>().SomeAttr = value;
...
_orchardServices.ContentManager.Publish(ci);
在另一种方法中,我需要更改它的内容类型,我尝试了以下但没有成功:
ci.TypeDefinition = _contentDefinitionManager.GetTypeDefinition("ContentTypeB");
ci.ContentType = "ContentTypeB";
当我再次查询内容项时,它的内容类型仍然是“ContentTypeA”而不是“ContentTypeB”。
有任何想法吗?