Azavea.Open.DAO.Memory.AbstractMemoryIndex.AbstractMemoryIndex C# (CSharp) Method

AbstractMemoryIndex() protected method

Base class that handles some of the key comparison common across index types.
protected AbstractMemoryIndex ( MemoryDaLayer layer, string property ) : System
layer MemoryDaLayer The data access layer in use.
property string The property to index on.
return System
        protected AbstractMemoryIndex(MemoryDaLayer layer, string property)
        {
            _daLayer = layer;
            _property = property;
        }