dateTable
Posted applekingghfhfhbr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dateTable相关的知识,希望对你有一定的参考价值。
DataSet ds = dal.GetInventory();
foreach (DataTable dt in ds.Tables)
{
foreach (DataRow dr in dt.Rows)
{
InventoryList.Add(new icbc_invtorylist()
{
pruduct_num = dr["goodsid"].ToString(),
pruduct_status = Convert.ToInt32(dr["inventory_warehouseshop"]) > 0 ? 0 : 1
});
}
}
以上是关于dateTable的主要内容,如果未能解决你的问题,请参考以下文章