如何将表达式添加到数据表中已存在的数据列?

时间:2012-02-06 16:45:35

标签: c# datatable datacolumn

我可以在向数据表添加列时添加表达式,但现在我需要在数据表中添加更新现有数据列的表达式。

我该怎么做?

      foreach (DataColumn col in this.dv.ToTable().Columns)
            {
                 if (col.ColumnName == "tot")
               {
                    col.Expression = string.Empty;
                     col.Expression = "description";

                }
            }

这段代码似乎无法正常工作.. 我该如何做到这一点?

0 个答案:

没有答案