C# Class Azavea.Open.DAO.Memory.MemoryObject

The representation of the object data while in the data store.
Datei anzeigen Open project: azavea/net-dao Class Usage Examples

Public Properties

Property Type Description
ColValues object>.IDictionary

Public Methods

Method Description
GetKey ( ) : string

Returns a unique (or as unique as the original object's IDs anyway) single key.

MemoryObject ( ClassMapping mapping, object>.IEnumerable colValues ) : System.Collections.Generic

Create a datastore object from the values passed in from the original object.

Method Details

GetKey() public method

Returns a unique (or as unique as the original object's IDs anyway) single key.
public GetKey ( ) : string
return string

MemoryObject() public method

Create a datastore object from the values passed in from the original object.
public MemoryObject ( ClassMapping mapping, object>.IEnumerable colValues ) : System.Collections.Generic
mapping ClassMapping
colValues object>.IEnumerable
return System.Collections.Generic

Property Details

ColValues public_oe property

The values of the columns.
public IDictionary ColValues
return object>.IDictionary