Method | Description | |
---|---|---|
GetCardinality ( |
Returns a number indicating how many breaks this index has for the properties used in the criteria. Roughly speaking, higher is better (though the number is an estimate, it is possible to have data that makes the index inefficient). If there are multiple indexes, the one that returns the highest number from this method will be used. An index should return 1 to indicate that it offers no value for this criteria.
|
|
GetPossibleMatches ( |
Uses the index to return the smallest number of possible matches for this criteria.
|
|
Rebuild ( IEnumerable |
This method rebuilds the index given a new list of data objects.
|
|
SinglePropertyMemoryIndex ( |
An index on a single field, keeps groups of the memory objects in a dictionary keyed by the values of the field.
|
public GetCardinality ( |
||
crit | The query being run. | |
return | int |
public GetPossibleMatches ( |
||
crit | The query being run. | |
return | IList |
public Rebuild ( IEnumerable |
||
objects | IEnumerable |
All the objects in the data store. |
return | void |
public SinglePropertyMemoryIndex ( |
||
layer | The data access layer in use. | |
property | string | The property to index on. |
objects | IEnumerable |
All the objects in this index. |
return | System |