Namespace:  NHibernate.Expression
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Like ( _
	propertyName As String, _
	value As String, _
	matchMode As MatchMode _
) As SimpleExpression
C#
public static SimpleExpression Like(
	string propertyName,
	string value,
	MatchMode matchMode
)
Visual C++
public:
static SimpleExpression^ Like(
	String^ propertyName, 
	String^ value, 
	MatchMode^ matchMode
)
JavaScript
NHibernate.Expression.Expression.like = function(propertyName, value, matchMode);

Parameters

propertyName
Type: System..::.String
value
Type: System..::.String
matchMode
Type: NHibernate.Expression..::.MatchMode

See Also