DataView.Sort 属性  
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置排序列或列,以及 DataView的排序顺序。
public:
 property System::String ^ Sort { System::String ^ get(); void set(System::String ^ value); };public string Sort { get; set; }[System.Data.DataSysDescription("DataViewSortDescr")]
public string Sort { get; set; }member this.Sort : string with get, set[<System.Data.DataSysDescription("DataViewSortDescr")>]
member this.Sort : string with get, setPublic Property Sort As String属性值
包含列名后跟“ASC”(升序)或“DESC”(降序)的字符串。 默认情况下,列按升序排序。 多个列可以用逗号分隔。
- 属性
示例
以下示例指示 DataView 按两列对表进行排序。
using System.Data;
using System;
public class A {
   static void Main(string[] args) {
      DataTable locationTable = new DataTable("Location");
      // Add two columns
      locationTable.Columns.Add("State");
      locationTable.Columns.Add("ZipCode");
      // Add data
      locationTable.Rows.Add("Washington", "98052");
      locationTable.Rows.Add("California", "90001");
      locationTable.Rows.Add("Hawaii", "96807");
      locationTable.Rows.Add("Hawaii", "96801");
      locationTable.AcceptChanges();
      Console.WriteLine("Rows in original order\n State \t\t ZipCode");
      foreach (DataRow row in locationTable.Rows) {
         Console.WriteLine(" {0} \t {1}", row["State"], row["ZipCode"]);
      }
      // Create DataView
      DataView view = new DataView(locationTable);
      // Sort by State and ZipCode column in descending order
      view.Sort = "State ASC, ZipCode ASC";
      Console.WriteLine("\nRows in sorted order\n State \t\t ZipCode");
      foreach (DataRowView row in view) {
         Console.WriteLine(" {0} \t {1}", row["State"], row["ZipCode"]);
      }
   }
}
Imports System.Data
Public Class A
   Public Shared Sub Main(args As String())
      Dim locationTable As New DataTable("Location")
      ' Add two columns
      locationTable.Columns.Add("State")
      locationTable.Columns.Add("ZipCode")
      ' Add data 
      locationTable.Rows.Add("Washington", "98052")
      locationTable.Rows.Add("California", "90001")
      locationTable.Rows.Add("Hawaii", "96807")
      locationTable.Rows.Add("Hawaii", "96801")
      locationTable.AcceptChanges()
      Console.WriteLine("Rows in original order" & vbLf & " State " & vbTab & vbTab & " ZipCode")
      For Each row As DataRow In locationTable.Rows
         Console.WriteLine(" {0} " & vbTab & " {1}", row("State"), row("ZipCode"))
      Next
      ' Create DataView
      Dim view As New DataView(locationTable)
      ' Sort by State and ZipCode column in descending order
      view.Sort = "State ASC, ZipCode ASC"
      Console.WriteLine(vbLf & "Rows in sorted order" & vbLf & " State " & vbTab & vbTab & " ZipCode")
      For Each row As DataRowView In view
         Console.WriteLine(" {0} " & vbTab & " {1}", row("State"), row("ZipCode"))
      Next
   End Sub
End Class
注解
如果未显式指定 DataView的排序条件,则 DataView 中的 DataRowView 对象根据 DataTable.RowsDataRowCollection中相应 DataRow 的索引进行排序。
有关详细信息,请参阅 DataViews。