我得到了节点
var l= UmbracoContext.Current.ContentCache.GetByRoute("1080/companies")
节点是doctype公司列表
如何将节点serlize到其中的comany类列表 all.generated.cs ??
答案 0 :(得分:0)
它应该是公司类型。您应该能够将其转换为您的模型类型,例如:
var l = UmbracoContext.Current.ContentCache.GetByRoute("1080/companies") as Company;
或者
var l = (Company)UmbracoContext.Current.ContentCache.GetByRoute("1080/companies");
假设生成的类名为Company。