6 votes
ria olap grid-Show MDX Query
Have callable function to show the underling mdx query of the grid
Status:
completed
Just use the code like:
protected void Page_Load(object sender, EventArgs e)
{
TMDCube1.ShowMDXQuery(RiaOLAPGrid1, "select {[Measures].[Order Count]} on 0, {[Product].[Product Categories].[Category].members} on 1 from [Adventure Works]");
}

Benny Toh
I wish to have this too