我需要在模块的迁移中定义一个具有Taxonomy字段的新Content Type。 我想我需要做这样的事情:
ContentDefinitionManager.AlterTypeDefinition("ContentTypeName",
cfg => cfg
.WithPart("TermsPart", builder => builder
.WithSetting(...
但我无法使其发挥作用。
答案 0 :(得分:8)
我终于感谢Giscard's answer了。 关于Orchard的重要事项是字段无法附加到内容类型。当您将其附加到管理UI中的内容类型时,Orchard会在幕后隐藏这一事实,它会在该内容类型中创建一个内容部分,其名称与内容类型相同,然后附加该字段( s)新的内容部分。
所以这是解决方案:
//Create new table for the new part
SchemaBuilder.CreateTable(typeof(SampleRecord).Name, table => table
.ContentPartRecord()
.Column("SampleColumn", DbType.String)
);
//Attach field to the new part
ContentDefinitionManager.AlterPartDefinition(
typeof(SamplePart).Name,
cfg => cfg
.Attachable()
.WithField("Topic", fcfg => fcfg
.OfType("TaxonomyField")
.WithDisplayName("Topic")
.WithSetting("Taxonomy", "Topics")
.WithSetting("LeavesOnly", "true")
.WithSetting("SingleChoice", "true")
.WithSetting("Required", "true"))
);
//Attach part to the new Content Type
ContentDefinitionManager.AlterTypeDefinition("Sample",
cfg => cfg
.WithPart(typeof(SamplePart).Name
));
我创建了一个名为“SampleColumn”的列的表,并为名为“Topics”的分类法附加了一个字段“Topic”。 希望它可以帮助别人。