Aerospike LINDPad Driver

AValue..::..MatchOptions Enumeration

Namespace:  Aerospike.Database.LINQPadDriver.Extensions
Assembly:  Aerospike.Database.LINQPadDriver (in Aerospike.Database.LINQPadDriver.dll)

Syntax


[FlagsAttribute]
public enum MatchOptions

Members


Member nameDescription
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.
RegexToString is call on the Value, and the RegEx is applied.