Umbraco - Finding Root Node in C#
问题 I'm working on a backend module, so Node.GetCurrent() is not an option. I need to find a way to call something like Node currentNode = new Node(parentNodeId); and get the root node of the site. I've seen samples in XSLT, but nothing for C#. Does anyone know how I can accomplish this? Even just getting the ID of the root node so I can call new Node() would be great. 回答1: The rootnode is always available as: var rootNode = new Node(-1); 回答2: Update for Umbraco 7 (may work in earlier versions