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

DeleteIndex() public method

Removes an index on the data for slower queries (but usually faster inserts/updates/deletes). Some data sources may not support indexes (such as CSV files), in which case this method should be a no-op. If the data source supports indexes, but support for creating them is not yet implemented, this should throw a NotImplementedException.
public DeleteIndex ( string name, ClassMapping mapping ) : void
name string Name of the index to delete.
mapping ClassMapping ClassMapping for the data that was being indexed.
return void
        public void DeleteIndex(string name, ClassMapping mapping)
        {
            throw new NotImplementedException("TODO");
        }