Add UseWhereClauseForSlicing to an Application

2 Jun 20211 minute to read

The user can add the UseWhereClauseForSlicing property to an application by setting the property to a Boolean value. To perform the slicing operation using the ‘Where’ clause, set the property to true. To perform the slicing operation using the ‘Select’ clause, set the property to false. By default, the value of the UseWhereClauseForSlicing property is true.

To perform slicing operation using ‘Where’ clause:

OlapDataManager.UseWhereClauseForSlicing = true;
OlapDataManager.UseWhereClauseForSlicing = True

To perform slicing operation using ‘Select’ clause:

this.olapGridControl1.OlapDataManager.UseWhereClauseForSlicing = false;
Me.olapGridControl1.OlapDataManager.UseWhereClauseForSlicing = False