然后就是想请问各位: 为什么不能返回dataset类型啊??
如果使用实体类进行返回值时候。每次返回一条记录、、、
DataSet ds = new DataSet();
sqldap.Fill(ds);
return new Products() { ProductID=Convert.ToInt32(ds.Tables[0].Rows[0][0]),
ProductName=ds.Tables[0].Rows[0][1].ToString(),
Description=ds.Tables[0].Rows[0][2].ToString(),
Price=Convert.ToDecimal( ds.Tables[0].Rows[0][3])};
products 是自己在接口定义的类。。
请问下怎么才能把这个表的全部记录一起返回啊??、
翻阅古今
Cats萌萌