目前,我在CMS中有几种自定义页面类型。为了在处理文档时具有类型安全性,我使用内置代码生成器为每种页面类型创建类。例如,我有一个名为Whitepaper的页面类型,Kentico代码生成器生成了两个类:
public partial class Whitepaper : TreeNode { }
public partial class WhitepaperProvider { }
如果我使用提供程序直接查询特定文档,这些类非常有用:
WhitepaperProvider.GetWhitepapers().TopN(10);
但是,我希望能够将Whitepaper
类用于当前文档,而无需使用WhitepaperProvider
重新查询文档。在这种情况下,我有一个白皮书的自定义页面模板,在后面的代码我希望能够使用自定义类:
// This is what I'm using
TreeNode currentDocument = DocumentContext.CurrentDocument;
var summary = currentDocument.GetStringValue("Summary", string.Empty);
// This is what I'd like to use, because I know the template is for whitepapers
Whitepaper currentWhitepaperDocument = // what goes here?
summary = currentWhitepaperDocument.Summary;
如何在当前文档中使用自定义页面类型类?
更新
正如答案提到的那样,只要为当前页面类型注册了一个类,就可以使用as
。我没想到这会起作用,因为我假设DocumentContext.CurrentDocument总是返回一个TreeNode(因此你有一个逆变问题);如果有一个为页面类型注册的类,它将返回该类的实例,从而允许您使用as
。
答案 0 :(得分:1)
应该像......一样简单。
var stronglyTyped = DocumentContext.CurrentDocument as Whitepaper
...只要您使用DocumentType
上的CMSModuleLoader
属性将您的白皮书类注册为文档类型,例如:
[DocumentType("WhitepaperClassName", typeof(Namespace.To.Whitepaper))]
这是一篇关于强类型页面类型对象连接的好文章:http://johnnycode.com/2013/07/15/using-strongly-typed-custom-document-type-classes/
答案 1 :(得分:0)
你可以扩展你的部分类(不要修改生成的文件,为原始文件创建一个部分),例如:
public partial class Whitepaper
{
public Whitepaper CreateFromNode(TreeNode node)
{
//You should choose all necessary params in CopyNodeDataSettings contructor
node.CopyDataTo(this, new CopyNodeDataSettings());
//You should populate custom properties in method above.
//this.Status = ValidationHelper.GetString(node["Status"], "");
return this;
}
}
如何使用它:
new Whitepaper().CreateFromNode(DocumentContext.CurrentDocument)