Azavea.Open.DAO.Memory.MemoryDaLayer.CreateIndex C# (CSharp) Method

CreateIndex() public method

Indexes the data for faster queries. Some data sources may not support indexes (such as CSV files), in which case this should throw a NotSupportedException. If the data source supports indexes, but support for creating them is not yet implemented, this should throw a NotImplementedException.
public CreateIndex ( string name, ClassMapping mapping, ICollection propertyNames ) : void
name string Name of the index. Some data sources require names for indexes, /// and even if not this is required so the index can be deleted if desired.
mapping ClassMapping ClassMapping for the data that is being indexed.
propertyNames ICollection Names of the data properties to include in the index (in order).
return void
        public void CreateIndex(string name, ClassMapping mapping, ICollection<string> propertyNames)
        {
            throw new NotImplementedException("TODO");
        }