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.
查看我们的 ClientId 层次结构图,我看到在大多数层次结构中重复的模式:
如果我展开All,那么该层次结构的每个成员都包括在内 - 是All一个级别还是一个成员?
All
All 是属性“IsAggregatable”设置为 TRUE 的属性的所有成员的父成员。
ALL 也是一个包含所有成员的级别。
根据您使用的内容,以下语句可以返回合理的结果或错误,所以我很高兴知道 ALL 和 All 之间的区别
Dim.hier.[All].children Dim.hier.[(All)].children Dim.hier.[(All)].members Dim.hier.[ALL].children Dim.hier.[ALL].members
希望这可以澄清一些事情
汤姆