Метод |
Описание |
|
ChangeAlias ( string alias ) : SqlSelectExpression |
|
|
ChangeColumns ( IEnumerable columns ) : SqlSelectExpression |
|
|
ChangeColumns ( IEnumerable columns, bool columnsAlreadyOrdered ) : SqlSelectExpression |
|
|
ChangeForUpdate ( bool forUpdate ) : SqlSelectExpression |
|
|
ChangeOrderBy ( IEnumerable orderBy ) : SqlSelectExpression |
|
|
ChangeSkipTake ( Expression skip, Expression take ) : SqlSelectExpression |
|
|
ChangeWhere ( Expression where ) : SqlSelectExpression |
|
|
ChangeWhereAndColumns ( Expression where, IReadOnlyList columns, bool forUpdate = null ) : SqlSelectExpression |
|
|
SqlSelectExpression ( Type type, string alias, IEnumerable columns, Expression from, Expression where, IEnumerable orderBy, IEnumerable groupBy, bool distinct, Expression skip, Expression take, bool forUpdate = false, bool reverse = false ) : System |
|
|
SqlSelectExpression ( Type type, string alias, IEnumerable columns, Expression from, Expression where, IEnumerable orderBy, bool forUpdate = false, bool reverse = false ) : System |
|
|
SqlSelectExpression ( Type type, string alias, IReadOnlyList columns, Expression from, Expression where, IReadOnlyList orderBy, IReadOnlyList groupBy, bool distinct, Expression skip, Expression take, bool forUpdate = false, bool reverse = false, Expression into = null ) : System |
|
|