Umbraco:从内容中获取“最后编辑”值

时间:2013-11-26 11:27:21

标签: c# umbraco umbraco6

在我的umbraco项目中,我需要C#代码中“最后编辑”选项卡中的值。

enter image description here

我如何获得这些价值?

请帮助, 感谢。

1 个答案:

答案 0 :(得分:1)

这很简单。这是实现目标的一种方式:

  

//确保对根节点进行查询,在这种情况下,我在根控制器上。

     

var recentUpdatedNodes =   Model.Content.DescendantsOrSelf()。OrderByDescending(x =>   x.UpdateDate)。取(50);

foreach (var node in recentUpdatedNodes)
{
    @node.Name
    @node.Url
    @node.Id
}