我有一个“信息”类型的文档我也有一些自定义属性。
信息标题信息概要信息正文
我想检索文档类型为“info”的所有文档并输出数据。
谢谢
这个简单的剃刀宏应该可以完成您想要的:
@{
// Get root node:
var root = Model.AncestorOrSelf();
// Get all descendants, filter by type:
var nodes = root.Descendants("info");
// Loop through the filtered nodes, displaying the properties:
<ul>
@foreach (var node in nodes)
{
<li>
<h2>@node.infoTitle</h2>
<div>@node.infoSummary</div>
<div>@node.infoBody</div>
</li>
}
</ul>
}