I'm using the MDXClient library in my C# application. I browse cube and generate some reports based on mdx queries.
When I use Management Studio I have nice (user friendly) column names in the query result, but when I use this library the column names are very long and differ from what I have in Management Studio.
Sample query:
SELECT [My Question].[My Question].[My Question].AllMembers ON COLUMNS from [demo]
Sample result in management studio is one column:
[nice]
Sample result in my C# app is one column:
[My Question].[My Question].&curr_nice
How can i retrieve the same answer as what I see in SSMS?