如何将具有值的新列添加到现有数据表中?


70

我有一个具有5列和10行的DataTable。现在,我想向数据表中添加一个新列,并希望将DropDownList值分配给新列。因此,DropDownList值应添加10次到“新列”中。这该怎么做?注意:不使用FOR LOOP。

例如:我现有的数据表就是这样。

   ID             Value
  -----          -------
    1              100
    2              150

现在,我想向该数据表中添加一个新列“ CourseID”。我有一个DropDownList。它的选择值为1。因此,“我的现有表”应如下所示:

    ID              Value         CourseID
   -----            ------       ----------
    1                100             1
    2                150             1

这该怎么做?


@CheckRaise:如果DataTable包含更多记录,则将花费更多时间来完成循环。
thevan 2011年

Answers:


131

没有For循环:

Dim newColumn As New Data.DataColumn("Foo", GetType(System.String))     
newColumn.DefaultValue = "Your DropDownList value" 
table.Columns.Add(newColumn) 

C#:

System.Data.DataColumn newColumn = new System.Data.DataColumn("Foo", typeof(System.String));
newColumn.DefaultValue = "Your DropDownList value";
table.Columns.Add(newColumn);

12
+1我收回了。设置该列,DefaultValue 然后将其添加到Columns集合中,具有应用于所有现有行的预期效果。但是,将其添加到Columns然后设置DefaultValue不会产生相同的结果(在这种情况下,它仅适用于新添加的行,而不适用于现有的行)。
艾哈迈德·玛吉德

为什么表在当前上下文中不存在?
Hacki

14

添加列并更新中的所有行DataTable,例如:

DataTable tbl = new DataTable();
tbl.Columns.Add(new DataColumn("ID", typeof(Int32)));
tbl.Columns.Add(new DataColumn("Name", typeof(string)));
for (Int32 i = 1; i <= 10; i++) {
    DataRow row = tbl.NewRow();
    row["ID"] = i;
    row["Name"] = i + ". row";
    tbl.Rows.Add(row);
}
DataColumn newCol = new DataColumn("NewColumn", typeof(string));
newCol.AllowDBNull = true;
tbl.Columns.Add(newCol);
foreach (DataRow row in tbl.Rows) {
    row["NewColumn"] = "You DropDownList value";
}
//if you don't want to allow null-values'
newCol.AllowDBNull = false;

DefaultValue用于new System.Data.DataColumn
Kiquenet

@Kiquenet:我为什么要使用它?难道不是凯斯的答案的重复吗?使用DefaultValue只是一种不同的方法。这也是可行的,效率也不低,简洁性也有所降低。它也没有缺点,您无需记住在应用默认值之前是否可以添加列。同样,如果在将列添加到表中时只需要一次该值,则必须DefaultValue再次删除该值。
蒂姆·舒默尔

2
OP不是只是说不使用循环!?
Pikachu620 '18

@ Pikachu620:好吧,for循环只是隐藏在已接受答案的框架中。两种方法都一样有效,选择更易读的内容或在需要时记住的内容:)
Tim Schmelter,

@MitchWheat:已发表评论。我保留我的答案,因为这是大多数人在实际需要时会记住的内容,并且使用这种方法也没有什么不好的。使用DefaultValue很优雅,但是必须记住使用顺序。顺便说一句,它也使用for循环
Tim Schmelter,

-2
//Data Table

 protected DataTable tblDynamic
        {
            get
            {
                return (DataTable)ViewState["tblDynamic"];
            }
            set
            {
                ViewState["tblDynamic"] = value;
            }
        }
//DynamicReport_GetUserType() function for getting data from DB


System.Data.DataSet ds = manage.DynamicReport_GetUserType();
                tblDynamic = ds.Tables[13];

//Add Column as "TypeName"

                tblDynamic.Columns.Add(new DataColumn("TypeName", typeof(string)));

//fill column data against ds.Tables[13]


                for (int i = 0; i < tblDynamic.Rows.Count; i++)
                {

                    if (tblDynamic.Rows[i]["Type"].ToString()=="A")
                    {
                        tblDynamic.Rows[i]["TypeName"] = "Apple";
                    }
                    if (tblDynamic.Rows[i]["Type"].ToString() == "B")
                    {
                        tblDynamic.Rows[i]["TypeName"] = "Ball";
                    }
                    if (tblDynamic.Rows[i]["Type"].ToString() == "C")
                    {
                        tblDynamic.Rows[i]["TypeName"] = "Cat";
                    }
                    if (tblDynamic.Rows[i]["Type"].ToString() == "D")
                    {
                        tblDynamic.Rows[i]["TypeName"] = "Dog;
                    }
                }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.