Where<T> Interface

Represents the WHERE clause in a SELECT statement.

C#
public interface Where<T> : SelectSorter<T>
where T : notnull

Type Parameters

T
notnull

The type of the class representing any row of the result of the query.

Implements