在 C# 中对 DataTable 进行排序

Muhammad Maisam Abbas 2023年1月30日 2021年4月29日
  1. 使用 C# 中的 DataView.Sort 属性对 DataTable 进行排序
  2. 使用 C# 中的 DataTable.DefaultView 属性对 DataTable 进行排序
在 C# 中对 DataTable 进行排序

本教程将介绍在 C# 中对数据表进行排序的方法。

使用 C# 中的 DataView.Sort 属性对 DataTable 进行排序

DataView.Sort 属性用于获取或设置 C# 中数据表的排序列。我们可以通过指定列名来设置数据表的排序列,如 DataView.Sort = "Col_name"。默认情况下,此方法以升序对数据表进行排序。我们可以在列名之后指定 desc 来对数据表进行降序排序。然后我们可以使用 C# 中的 DataView.ToTable() 函数将此 DataView 转换为 DataTable。以下代码示例向我们展示了如何使用 C# 中的 DataView.Sort 属性对数据表进行排序。

using System;
using System.Data;

namespace datatable_sort
{
    class Program
    {
        static void Main(string[] args)
        {
            DataTable table1 = new DataTable();
            DataColumn column1 = new DataColumn();
            DataColumn column2 = new DataColumn();
            column1.DataType = System.Type.GetType("System.Decimal");
            column2.DataType = System.Type.GetType("System.Decimal");
            column1.ColumnName = "Price";
            column2.ColumnName = "Rating";
            table1.Columns.Add(column1);
            table1.Columns.Add(column2);
            DataRow row;
            for (int i = 0; i < 3; i++)
            {
                row = table1.NewRow();
                row["Price"] = i + 1;
                row["Rating"] = i;
                table1.Rows.Add(row);
            }
            //Displaying Original Values
            Console.WriteLine("UnSorted Values");
            foreach(DataRow r in table1.Rows)
            {
                Console.WriteLine("Price = {0}, Rating = {1}",r[0],r[1]);
            }

            //Sorting the Table
            DataView dv = table1.DefaultView;
            dv.Sort = "Price desc";
            DataTable sortedtable1 = dv.ToTable();
            
            //Displaying Sorted Values
            Console.WriteLine("Sorted Values by Descending order of Price");
            foreach (DataRow r in sortedtable1.Rows)
            {
                Console.WriteLine("Price = {0}, Rating = {1}", r[0], r[1]);
            }

        }
    }
}

输出:

UnSorted Values
Price = 1, Rating = 0
Price = 2, Rating = 1
Price = 3, Rating = 2
Sorted Values by Descending order of Price
Price = 3, Rating = 2
Price = 2, Rating = 1
Price = 1, Rating = 0

在上面的代码中,我们首先创建了一个数据表 table1,并向其添加了两列 PriceRating。然后,我们按照 Price 的降序对表格进行排序,并显示新值。我们创建了 DataView 类的新实例,并使用 DataView.Sort 属性对其进行了排序。然后,我们使用 C# 中的 DataView.ToTable() 函数将排序后的 DataView 转换为 DataTable。最后,我们在排序表中显示了数据。

使用 C# 中的 DataTable.DefaultView 属性对 DataTable 进行排序

DataTable.DefaultView 属性用于获取 C# 中数据表的自定义视图。我们可以通过在 DataTable.DefaultView.Sort 属性中指定排序列来对数据表进行排序。默认情况下,此方法以升序对数据表进行排序。我们可以在列名之后指定 desc 来对数据表进行降序排序。然后,我们可以使用 C# 中的 DefaultView.ToTable() 函数将排序后的视图转换为数据表。以下代码示例向我们展示了如何使用 C# 中的 DataTable.DefaultView 属性对数据表进行排序。

using System;
using System.Data;

namespace datatable_sort
{
    class Program
    {
        static void Main(string[] args)
        {
            DataTable table1 = new DataTable();
            DataColumn column1 = new DataColumn();
            DataColumn column2 = new DataColumn();
            column1.DataType = System.Type.GetType("System.Decimal");
            column2.DataType = System.Type.GetType("System.Decimal");
            column1.ColumnName = "Price";
            column2.ColumnName = "Rating";
            table1.Columns.Add(column1);
            table1.Columns.Add(column2);
            DataRow row;
            for (int i = 0; i < 3; i++)
            {
                row = table1.NewRow();
                row["Price"] = i + 1;
                row["Rating"] = i;
                table1.Rows.Add(row);
            }
            //Displaying Original Values
            Console.WriteLine("UnSorted Values");
            foreach (DataRow r in table1.Rows)
            {
                Console.WriteLine("Price = {0}, Rating = {1}", r[0], r[1]);
            }
            
            //Sorting the Table
            table1.DefaultView.Sort = "Price desc";
            table1 = table1.DefaultView.ToTable(true);
            
            //Displaying Sorted Values
            Console.WriteLine("Sorted Values by Descending order of Price");
            foreach (DataRow r in table1.Rows)
            {
                Console.WriteLine("Price = {0}, Rating = {1}", r[0], r[1]);
            }

        }
    }
}

输出:

UnSorted Values
Price = 1, Rating = 0
Price = 2, Rating = 1
Price = 3, Rating = 2
Sorted Values by Descending order of Price
Price = 3, Rating = 2
Price = 2, Rating = 1
Price = 1, Rating = 0

在上面的代码中,我们首先创建了一个数据表 table1,并添加了 PriceRating 两列。然后,我们按照 Price 的降序对 table1 表进行排序,并显示新值。我们使用 table1.DefaultView.Sort 属性创建了 table1 表的排序视图。然后,我们使用 C# 中的 table1.DefaultView.ToTable(true) 函数将排序后的视图转换为表。最后,我们在排序表中显示了数据。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp DataTable