Click or drag to resize

IndexColumn Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
An IndexColumn is a designated column in a Table that is used for creating an index. An index allows you to query the table for records matching specified criteria.
Inheritance Hierarchy

Namespace:  Telogis.GeoBase.Transactional
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class IndexColumn

The IndexColumn type exposes the following members.

Constructors
  NameDescription
Public methodIndexColumn
Creates a new IndexColumn on the given column.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
An Index may be created from one or more IndexColumns.
Examples
C#
using (EnsureTransaction trans = new EnsureTransaction(repository)) {
    Index idx = t.CreateIndex("locations", 
        new IndexColumn[] { 
            new IndexColumn("latlon") 
        });
}
See Also