DbExpressionBuilder.ThenBy 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用排序順序建立新的 DbSortExpression ,其中包含指定順序輸入集的排序順序,以及遞增排序順序和預設定序的指定排序索引鍵。
多載
ThenBy(DbSortExpression, Func<DbExpression,DbExpression>, String) |
使用排序順序建立新的 DbSortExpression ,其中包含指定順序輸入集的排序順序,以及以遞增排序順序的指定排序索引鍵和指定的定序。 |
ThenBy(DbSortExpression, Func<DbExpression,DbExpression>) |
使用排序順序建立新的 DbSortExpression ,其中包含指定順序輸入集的排序順序,以及遞增排序順序和預設定序的指定排序索引鍵。 |
ThenBy(DbSortExpression, Func<DbExpression,DbExpression>, String)
使用排序順序建立新的 DbSortExpression ,其中包含指定順序輸入集的排序順序,以及以遞增排序順序的指定排序索引鍵和指定的定序。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbSortExpression ^ ThenBy(System::Data::Common::CommandTrees::DbSortExpression ^ source, Func<System::Data::Common::CommandTrees::DbExpression ^, System::Data::Common::CommandTrees::DbExpression ^> ^ sortKey, System::String ^ collation);
public static System.Data.Common.CommandTrees.DbSortExpression ThenBy (this System.Data.Common.CommandTrees.DbSortExpression source, Func<System.Data.Common.CommandTrees.DbExpression,System.Data.Common.CommandTrees.DbExpression> sortKey, string collation);
static member ThenBy : System.Data.Common.CommandTrees.DbSortExpression * Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> * string -> System.Data.Common.CommandTrees.DbSortExpression
<Extension()>
Public Function ThenBy (source As DbSortExpression, sortKey As Func(Of DbExpression, DbExpression), collation As String) As DbSortExpression
參數
- source
- DbSortExpression
指定已排序輸入集的 DbSortExpression。
- sortKey
- Func<DbExpression,DbExpression>
方法,指定如何根據輸入集成員來衍生其他排序索引鍵運算式。 這個方法必須產生具有可比較順序之結果型別的運算式,這個字串結果型別會提供排序索引鍵定義。
- collation
- String
要做為排序依據的定序。
傳回
新的 DbSortExpression,表示新的整體 order-by 作業。
例外狀況
collation
是空的或僅包含空白字元。
適用於
ThenBy(DbSortExpression, Func<DbExpression,DbExpression>)
使用排序順序建立新的 DbSortExpression ,其中包含指定順序輸入集的排序順序,以及遞增排序順序和預設定序的指定排序索引鍵。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbSortExpression ^ ThenBy(System::Data::Common::CommandTrees::DbSortExpression ^ source, Func<System::Data::Common::CommandTrees::DbExpression ^, System::Data::Common::CommandTrees::DbExpression ^> ^ sortKey);
public static System.Data.Common.CommandTrees.DbSortExpression ThenBy (this System.Data.Common.CommandTrees.DbSortExpression source, Func<System.Data.Common.CommandTrees.DbExpression,System.Data.Common.CommandTrees.DbExpression> sortKey);
static member ThenBy : System.Data.Common.CommandTrees.DbSortExpression * Func<System.Data.Common.CommandTrees.DbExpression, System.Data.Common.CommandTrees.DbExpression> -> System.Data.Common.CommandTrees.DbSortExpression
<Extension()>
Public Function ThenBy (source As DbSortExpression, sortKey As Func(Of DbExpression, DbExpression)) As DbSortExpression
參數
- source
- DbSortExpression
指定已排序輸入集的 DbSortExpression。
- sortKey
- Func<DbExpression,DbExpression>
方法,指定如何根據輸入集成員來衍生其他排序索引鍵運算式。 這個方法必須產生具有可比較順序之結果型別的運算式,這個字串結果型別會提供排序索引鍵定義。
傳回
新的 DbSortExpression,表示新的整體 order-by 作業。