Open this page in the API Guide

IDataInputService.ConfigureDataStorageIndex Method

Configures a new index on the data storage entity.

Namespace:  Dundas.BI.Data.DataInput
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void ConfigureDataStorageIndex(
	DataInputTransform transform,
	IList<string> columns,
	bool isUnique
)

Parameters

transform
Type: Dundas.BI.Data.Transforms.DataInputTransform
The data input transform.
columns
Type: System.Collections.Generic.IList<String>
The column names for the index.
isUnique
Type: System.Boolean
If set to true the index defines unique set of values, otherwise false.
Exceptions
ExceptionCondition
ArgumentNullExceptiontransform is null.
ArgumentExceptioncolumns is null or empty.
NotFoundExceptionOne or more of the specified columns could not be found.
NoPrivilegeExceptionThe caller does not have the Write privilege on the underlying parent entity.
InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also