0

我创建了一个内容项的实例,如下所示:

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”。

有任何想法吗?

4

1 回答 1

1

创建内容项后,您将无法更改其内容类型。好吧,理论上您可以侵入数据库并使其工作,但创建一个新项目并复制数据似乎更好地利用您的时间。

于 2013-05-14T18:59:40.247 回答