TableCreateIndex Method | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates a new index on this table.
Namespace:
Telogis.GeoBase.Transactional
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public Index CreateIndex(
string idxname,
params IndexColumn[] indexColumn
)
Public Function CreateIndex (
idxname As String,
ParamArray indexColumn As IndexColumn()
) As Index
Parameters
- idxname
- Type: SystemString
The name of this index. This should be unique to the whole
TransactionalRepository - indexColumn
- Type: Telogis.GeoBase.TransactionalIndexColumn
An array of IndexColumns specifying the
structure of the index. The order of these columns can have an effect on the resulting
queries.
Return Value
Type:
IndexAn instance of
Index representing the newly created index.
Remarks Indexes must be created within the context of a transaction on the TransactionalRepository that
contains the Table.
See Also