C# Class Shaolinq.Persistence.Linq.Expressions.SqlSubqueryExpression

Represents an aggregate subquery before the aggregate has been rewritten.
When a LINQ query projects a column using an aggregate, the subquery holds a select expression that represents that single aggregate call. The subquery consists of the part inside the outer parenthesis: SELECT (SELECT MAX(id) FROM product) AS max FROM product;
Inheritance: SqlBaseExpression
Afficher le fichier Open project: tumtumtum/Shaolinq Class Usage Examples

Méthodes publiques

Méthode Description
SqlSubqueryExpression ( Type type, SqlSelectExpression select ) : System

Method Details

SqlSubqueryExpression() public méthode

public SqlSubqueryExpression ( Type type, SqlSelectExpression select ) : System
type System.Type
select SqlSelectExpression
Résultat System