Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
425
Read out MDX query
posted

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

Parents
No Data
Reply
  • 7922
    posted

    Hi

    There is a InitXmlaMethod event of XmlaDataSource which can be used for read out the MDX query.

    XmlaDataSource ds;
    ds.InitXmlaMethod += (sender, args) => 
    {
    };

    Regards
    Todor 

Children