[C#-C/S]请教DataTable的InputRow时怎么控制自动增加列呢?
代码:ds.Tables["ATABZON"].Columns[0].Unique = true;
ds.Tables["ATABZON"].Columns[0].AutoIncrement = true;
ds.Tables["ATABZON"].Columns[0].AutoIncrementSeed = 5;
ds.Tables["ATABZON"].Columns[0].AutoIncrementStep = 5;
问题:
我希望能够使用以下代码
DataTable dt=ds.Tables["ATABZON"];
dt.ImportRow(dt.Rows[0]);//复制第0行
来复制行,而且设为自动增加的列要自动增加,有什么比较简单一点儿的方法吗?
新注册分比较少,多谢大家支持
--------------------编程问答-------------------- up --------------------编程问答-------------------- 继续up --------------------编程问答-------------------- 大侠们哪里去了啊,分太少?
补充:.NET技术 , C#