메소드 | 설명 | |
---|---|---|
GroupBy ( this |
Collects data across multiple records and group the results by one or more columns.
|
|
Having ( this |
Specifies a search condition for a group or an aggregate.
|
|
OrderBy ( this |
Creates a DbOrderByExpression that represents ordering the result set.
|
|
OrderByAscending ( this |
Creates a new DbOrderByExpression that represents an ascending ordering of the result set.
|
|
OrderByDescending ( this |
Creates a new DbOrderByExpression that represents an descending ordering of the result set.
|
|
Select ( this dbSelectQuery ) : DbSelectQuery |
Specifies the projecton of the query.
|
|
Select ( this dbSelectQuery, |
Specifies the projection of the query.
|
|
SelectDistinct ( this dbSelectQuery ) : DbSelectQuery |
Specifies the projecton of the query.
|
|
SelectDistinct ( this dbSelectQuery, |
Specifies the projection of the query.
|
|
Skip ( this |
Bypasses a specified number of rows in the result set.
|
|
Skip ( this |
Bypasses a specified number of rows in the result set.
|
|
Take ( this |
Limits the numbers of rows returned by the query.
|
|
Take ( this |
Limits the numbers of rows returned by the query.
|
public static GroupBy ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to specify an element in the 'GROUP BY' clause. |
리턴 | DbQuery |
public static Having ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to specify the 'HAVING' expression. |
리턴 | DbQuery |
public static OrderBy ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to specify an element in the 'ORDER BY' clause. |
orderByExpressionType | DbOrderByExpressionType | Specifies the sort order direction. |
리턴 | DbQuery |
public static OrderByAscending ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to specify an element in the 'ORDER BY' clause. |
리턴 | DbQuery |
public static OrderByDescending ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to specify an element in the 'ORDER BY' clause. |
리턴 | DbQuery |
public static Select ( this dbSelectQuery ) : DbSelectQuery | ||
dbSelectQuery | this | The target |
리턴 | DbSelectQuery |
public static Select ( this dbSelectQuery, |
||
dbSelectQuery | this | The target |
expression | The |
|
리턴 | DbSelectQuery |
public static SelectDistinct ( this dbSelectQuery ) : DbSelectQuery | ||
dbSelectQuery | this | The target |
리턴 | DbSelectQuery |
public static SelectDistinct ( this dbSelectQuery, |
||
dbSelectQuery | this | The target |
expression | The |
|
리턴 | DbSelectQuery |
public static Skip ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to create a |
리턴 | DbQuery |
public static Skip ( this |
||
dbSelectQuery | this |
The target |
count | int | The number of rows to bypass in the result set |
리턴 | DbQuery |
public static Take ( this |
||
dbSelectQuery | this |
The target |
expressionSelector | DbExpression>.Func | A function used to create a |
리턴 | DbQuery |
public static Take ( this |
||
dbSelectQuery | this |
The target |
count | int | The number of rows to return. |
리턴 | DbQuery |