DbExpressionBuilder.Aggregate(EdmFunction, DbExpression) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new DbFunctionAggregate.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionAggregate ^ Aggregate(System::Data::Metadata::Edm::EdmFunction ^ function, System::Data::Common::CommandTrees::DbExpression ^ argument);
public static System.Data.Common.CommandTrees.DbFunctionAggregate Aggregate (this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument);
static member Aggregate : System.Data.Metadata.Edm.EdmFunction * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionAggregate
<Extension()>
Public Function Aggregate (function As EdmFunction, argument As DbExpression) As DbFunctionAggregate
Parameters
- function
- EdmFunction
The function that defines the aggregate operation.
- argument
- DbExpression
The argument over which the aggregate function should be calculated.
Returns
A new function aggregate with a reference to the given function and argument. The function aggregate's Distinct property will have the value false
.
Exceptions
function
or argument
null.
function
is not an aggregate function or has more than one argument, or the result type of argument
is not equal or promotable to the parameter type of function
.