我在 C# 中有一个 Umbraco 节点列表。我可以使用节点类中内置的一些顶级属性(例如 node.Name)成功订购这些属性,但是当我尝试使用 GetProperty() 函数获取一些动态属性时,我得到了 NullReferenceException。
代码:
nodes = nodes.OrderBy(n => n.GetProperty("fromPrice").ToString()).ToList();
替换n.GetProperty("fromPrice").ToString()
为n.Name
作品,但我不想按此排序。
异常消息:
System.NullReferenceException: Object reference not set to an instance of an object.
不完全确定这意味着什么。任何帮助表示赞赏。
谢谢!