Hey guys,
I am wondering if it is possible to access/read the MDX query of the pivotgrid control which is genereated in background.
Is there any way to access it?
Thanks
Hi
There is a InitXmlaMethod event of XmlaDataSource which can be used for read out the MDX query.
XmlaDataSource ds; ds.InitXmlaMethod += (sender, args) => { };
RegardsTodor
How would that exactly look like? I cannot find the event ?
Thanks for your help.