我使用mondrian并且我有这个问题:使用查询mdx我需要在属于某个级别的每个成员名称中连接,它的名称和该成员的某个级别属性的值。
像CurrentMember.Name = CurrentMember.Name ||之类的东西CurrentMember.Properties( “道具”)。
这有可能吗?
感谢。 利玛
答案 0 :(得分:1)
在MDX中它看起来应该是那样
[Dimension].CurrentMember.Name + [Dimension].CurrentMember.Properties("YourProp")
MDX中的concatenation运算符为+
而非||