小弟初学ado。net
在dataset中View 新建列 统计了一些其他表数据 统计列
ds.Tables["View"].Columns.Add("进厂不合格", typeof(int), "count(child(View_InFun).fBatchNo)");
ds.Tables["View"].Columns.Add("进厂合格", typeof(int), "count(child(View_InSum).TsInFlg)-进厂不合格");
现在我想在View最后来个 行统计,可是 进厂合格,进厂不合格 但是!!这两列是只读的。也改不了
dr["进厂合格"] = dt.Compute("sum(进厂合格)", "相制='单相'"); ;
dr["进厂不合格"] = dt.Compute("sum(进厂不合格)", "相制='单相'");
跪求高手指教。如何做最后的统计行。
问题本身描述有些模糊。。。
DataTable dt=new DataTable();
datacolumn dc=new datacolumn();//to do
dt.columns.add(dc);
datarow dr =dt.newrow();
dt.rows.add(dr);