AValue..::..MatchOptions Enumeration
Namespace:
Aerospike.Database.LINQPadDriver.Extensions
Assembly: Aerospike.Database.LINQPadDriver (in Aerospike.Database.LINQPadDriver.dll)
Assembly: Aerospike.Database.LINQPadDriver (in Aerospike.Database.LINQPadDriver.dll)
Members
Member name | Description | |
---|---|---|
Value | Depending on the [UnderlyingType] and matching options: IEnumerable -- tries to match an element IDictionary -- tries to match on Key other types -- Tries to match on Value | |
Equals | Uses Equals(String) for matching. This is the default matching method. | |
Any | Depending on the [UnderlyingType] and matching options (default is Equals: IEnumerable -- tries to match an element IDictionary -- tries to match on Key or Value other types -- Tries to match on Value If provided, Value is ignored. | |
SubString | If the value is a string, the match occurs if this value is a substring of Value. If not a string, the defined matching method is used. | |
Exact | Will not try to match any elements in a collection. It will apply Equals(String) to all Value. If provided, all other options are ignored except Regex. | |
Regex | ToString is call on the Value, and the RegEx is applied. |