Select<T> Interface
Represents the SELECT
statement.
C#
public interface Select<T>
where T : notnull
Type Parameters
- T
-
notnull
The type of the class representing any row of the result of the query.
Methods
From<U>(string) |
Gets a new SelectFrom<T> object. |
Methods Detail
From<U>(string)
Gets a new SelectFrom<T> object.
C#
SelectFrom<T> From<U>(string alias)
Type Parameters
- U
-
notnull
The type of the class qualified with the TableAttribute.
Parameters
- alias
- string
The alias name of the table that U
represents.
Returns
The new SelectFrom<T> object.