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
Show file Open project: tumtumtum/Shaolinq Class Usage Examples

Public Methods

Method Description
SqlSubqueryExpression ( Type type, SqlSelectExpression select ) : System

Method Details

SqlSubqueryExpression() public method

public SqlSubqueryExpression ( Type type, SqlSelectExpression select ) : System
type System.Type
select SqlSelectExpression
return System