Click or drag to resize
WhereConditionBase<TParent>.WhereNotLike Method (String, String)
Adds the given where condition to the query. Matches the column to a given value using NOT LIKE operator.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax
C#
public virtual TParent WhereNotLike(
	string columnName,
	string value
)

Parameters

columnName
Type: System.String
Column name
value
Type: System.String
Value

Return Value

Type: TParent

Implements

IWhereCondition<TParent>.WhereNotLike(String, String)
See Also