DbExpressionBuilder.AggregateDistinct(EdmFunction, DbExpression) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Vytvoří nový DbFunctionAggregate , který se použije odlišným způsobem.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionAggregate ^ AggregateDistinct(System::Data::Metadata::Edm::EdmFunction ^ function, System::Data::Common::CommandTrees::DbExpression ^ argument);
public static System.Data.Common.CommandTrees.DbFunctionAggregate AggregateDistinct (this System.Data.Metadata.Edm.EdmFunction function, System.Data.Common.CommandTrees.DbExpression argument);
static member AggregateDistinct : System.Data.Metadata.Edm.EdmFunction * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionAggregate
<Extension()>
Public Function AggregateDistinct (function As EdmFunction, argument As DbExpression) As DbFunctionAggregate
Parametry
- function
- EdmFunction
Funkce, která definuje agregační operaci.
- argument
- DbExpression
Argument, ze kterého se má agregační funkce vypočítat.
Návraty
Nová agregace funkce s odkazem na danou funkci a argument. Vlastnost Distinct agregace funkce bude mít hodnotu true
.
Výjimky
function
nebo argument
má hodnotu null.
function
není agregační funkce nebo má více než jeden argument, nebo typ argument
výsledku není roven nebo není možné ho povolit typu parametru function
.