Skip to main content
.NET Framework 4.6.2+

IndicesAttribute.Indices Property

Specifies the properties participating in the creation of non-unique database indices.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v24.2.dll

Declaration

public IList<StringCollection> Indices { get; }

Property Value

Type Description
IList<StringCollection>

An IList<StringCollection> collection of strings, each of which contains a list of the properties participating in the creation of a database index, separated by a semicolon.

Remarks

To see an example of using the IndicesAttribute, refer to the IndicesAttribute description.

Note

XPO does not support tables with multi-column (compound) keys or indexes in ASE databases. To avoid exceptions when connecting to ASE databases containing these tables, use one-column keys or indexes.

See Also