Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 umbraco 项目中,我需要 C# 代码内的“最后编辑”选项卡中的值。
我怎样才能得到这些值?
请帮忙,谢谢。
这很简单。这是一种方法:
// 确保对根节点进行查询,在这种情况下,我在根控制器上。 var recentUpdatedNodes = Model.Content.DescendantsOrSelf().OrderByDescending(x => x.UpdateDate).Take(50); foreach (var node in recentUpdatedNodes) { @node.Name @node.Url @node.Id }
// 确保对根节点进行查询,在这种情况下,我在根控制器上。
var recentUpdatedNodes = Model.Content.DescendantsOrSelf().OrderByDescending(x => x.UpdateDate).Take(50);
foreach (var node in recentUpdatedNodes) { @node.Name @node.Url @node.Id }