ria olap grid-Show MDX Query
Have callable function to show the underling mdx query of the grid
6
votes
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]”);
}
1 comment
-
Benny Toh
commented
I wish to have this too