DbExpressionBuilder.AggregateDistinct(EdmFunction, DbExpression) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立以不同方式套用的新 DbFunctionAggregate。
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
參數
- function
- EdmFunction
定義彙總作業的函式。
- argument
- DbExpression
應該計算其彙總函式的引數。
傳回
含有指定函式及引數之參考的新函式彙總。 函式彙總的 Distinct 屬性會有true
值。
例外狀況
function
或 argument
為 null。
function
不是彙總函式,或具有一個以上的引數,或者 argument
的結果類型不等於或不可提升為 function
的參數類型。