次の方法で共有


ThenBy.DataField プロパティ

定義

IQueryable 式を適用する、ThenBy オブジェクトのプロパティを取得または設定します。

public:
 property System::String ^ DataField { System::String ^ get(); void set(System::String ^ value); };
public string DataField { get; set; }
member this.DataField : string with get, set
Public Property DataField As String

プロパティ値

IQueryable 式を適用する、ThenBy オブジェクトのプロパティ。

次の例は、ListPrice フィールドで降順にデータを並べ替え、次に Product ID フィールドを昇順で並べ替える方法を示しています。 このコード例は、「 チュートリアル: 宣言型構文を使用した Web ページでのデータのフィルター処理」で提供されるより大きな例の一部です。

<asp:OrderByExpression DataField="ListPrice"   
    Direction="Descending">  
  <asp:ThenBy DataField="ProductID" Direction="Ascending"/>  
</asp:OrderByExpression>  

注釈

OrderByExpression 、指定したデータ フィールドのデータを並べ替えます。 以降の並べ替え操作は、 コレクションを使用して別のデータ フィールドにOrderByExpressionThenByExpressions対して実行できます。 このプロパティは、並べ替え操作を適用するデータ フィールドを ThenBy 指定します。

適用対象