Namespaces

Types

Type MatchMode

Namespace NHibernate.Expression

Methods

Fields

Public instance methods

bool Equals(object obj)

Parameters
return bool
object obj

int GetHashCode()

Parameters
return int

Type GetType()

Parameters
return Type

string ToMatchString(string pattern)

Convert the pattern, by appending/prepending "%"
Parameters
return string A String that contains a "%" in the appropriate place for the Match Strategy.
string pattern The string to convert to the appropriate match pattern.

string ToString()

The string representation of the MatchMode .
Parameters
return string The friendly name used to describe the MatchMode .

Public fields

MatchMode Exact

Match the entire string to the pattern
return MatchMode

MatchMode Start

Match the start of the string to the pattern
return MatchMode

MatchMode End

Match the end of the string to the pattern
return MatchMode

MatchMode Anywhere

Match the pattern anywhere in the string
return MatchMode