DataTable最后一行作为第一行?

时间:2013-01-22 10:22:10

标签: c# datatable rows datarow

所以我在这里有一段代码,除了一行是InsertAt()部分之外。我想知道是否可以复制最后一行并将其作为第一行插入。想想这个想法。它可能只能在SQL背后完成,但是这个应用程序设计用于非常旧的数据库和oracle,所以在系统完全迁移之前,它必须像这样完成,不幸的是。

之前

  • 发货地点1
  • 发货地点2
  • 发货地点2

  • 开始位置
  • 发货地点1
  • 发货地点2
  • 发货地点3
  • 目的地位置

代码段:

// Create a DataTable with a list of shipments.    
DataTable dt = c.Query(c.qShipments(Row.Cells[0].Value.ToString()));
// Check if there is at least one shipment
if (dt.Rows.Count >= 1)
{
    // Add the destination of the shipments
    dt.Rows.Add(0, 0, 9999, textBox_CC.Text, textBox_PC.Text, textBox_SL.Text);
    // Add the starting location (which is the same as the destination. It has to be at the top of the DataTable
    dt.Rows.InsertAt(dt.Rows[dt.Rows.Count - 1], 0); // The code

    // Finally calculate and return the object to populate the datagridview with.
    dataGridView_CalculatedRoutes.Rows.Add(x.getRoute(dt));
}

tldr;

问题:代码返回Row属于另一个表。

问题:如何让最后一行成为第一行?

编辑问题:如何将最后一行作为第一行和最后一行。 (相同的行)

2 个答案:

答案 0 :(得分:1)

您要添加的行已经是该数据表的一部分。你必须先删除它。在一个简短的测试中,我发现删除一行似乎删除了该行中的数据,因此Remove()InsertAt()似乎不起作用。

但是您可以创建一个新行,将数据复制到该行并插入它。之后,您可以删除旧行。例如(使用Linqpad测试):

void Main() 
{
    DataTable dt = new DataTable();
    dt.Columns.Add(new DataColumn("Test", typeof(System.String)));
    var row = dt.NewRow();
    row["Test"] = "1";
    dt.Rows.Add(row);
    row = dt.NewRow();
    row["Test"] = "2";
    dt.Rows.Add(row);
    row = dt.NewRow();
    row["Test"] = "3";
    dt.Rows.Add(row);

    Console.WriteLine("Order before Remove/InsertAt");
    foreach(DataRow rw in dt.Rows)
    {
        Console.WriteLine(rw["Test"]);
    }

    var lastRow = dt.Rows[dt.Rows.Count - 1];
    var newFirstRow = dt.NewRow();
    newFirstRow.ItemArray = lastRow.ItemArray;
    dt.Rows.Remove(lastRow);
    dt.Rows.InsertAt(newFirstRow, 0);

    Console.WriteLine("Order after Remove/InsertAt");
    foreach(DataRow rw in dt.Rows)
    {
        Console.WriteLine(rw["Test"]);
    }
}

预期输出为:

Order before Remove/InsertAt
1
2
3
Order after Remove/InsertAt
3
1
2

答案 1 :(得分:1)

您可以创建新的DataTable并按所需顺序导入行:

// Create a DataTable with a list of shipments.    
DataTable dt = c.Query(c.qShipments(Row.Cells[0].Value.ToString()));
// Check if there is at least one shipment
if (dt.Rows.Count >= 1)
{
    DataTable customDt = new DataTable();

    // Add the starting location (which is the same as the destination. It has to be at 
    customDt.Rows.Add(0, 0, 9999, textBox_CC.Text, textBox_PC.Text, textBox_SL.Text);

    foreach(DataRow row in dt.Rows)
    {
        customDt.ImportRow(row);
    }
    // Add the destination of the shipments
    customDt.ImportRow(customDt.Rows[0]);

    // Finally calculate and return the object to populate the datagridview with.
    dataGridView_CalculatedRoutes.Rows.Add(x.getRoute(dt));
}