DbExpressionBuilder.ToSortClause 方法

定义

使用升序排序顺序和默认排序规则创建一个新的 DbSortClause

重载

ToSortClause(DbExpression)

使用升序排序顺序和默认排序规则创建一个新的 DbSortClause

ToSortClause(DbExpression, String)

使用升序排序顺序和指定排序规则创建一个新的 DbSortClause

ToSortClause(DbExpression)

使用升序排序顺序和默认排序规则创建一个新的 DbSortClause

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbSortClause ^ ToSortClause(System::Data::Common::CommandTrees::DbExpression ^ key);
public static System.Data.Common.CommandTrees.DbSortClause ToSortClause (this System.Data.Common.CommandTrees.DbExpression key);
static member ToSortClause : System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbSortClause
<Extension()>
Public Function ToSortClause (key As DbExpression) As DbSortClause

参数

key
DbExpression

定义排序键的表达式。

返回

使用给定的排序关键字和升序排序顺序的新排序子句。

例外

key 为 null。

key 没有可比较顺序的结果类型。

适用于

ToSortClause(DbExpression, String)

使用升序排序顺序和指定排序规则创建一个新的 DbSortClause

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbSortClause ^ ToSortClause(System::Data::Common::CommandTrees::DbExpression ^ key, System::String ^ collation);
public static System.Data.Common.CommandTrees.DbSortClause ToSortClause (this System.Data.Common.CommandTrees.DbExpression key, string collation);
static member ToSortClause : System.Data.Common.CommandTrees.DbExpression * string -> System.Data.Common.CommandTrees.DbSortClause
<Extension()>
Public Function ToSortClause (key As DbExpression, collation As String) As DbSortClause

参数

key
DbExpression

定义排序键的表达式。

collation
String

排序所依据的排序规则。

返回

使用给定的排序关键字和排序规则的新排序子句,使用升序排序顺序。

例外

key 为 null。

collation 为空,或者只包含空白字符。

key 没有可比较顺序的结果类型。

适用于