怎么样把数据库查询的内容放入list集合中
1个回答
展开全部
假设你查询返回的是DataTabale dt
List<entity> list=new List<entity>();
if(dt.Row.count>0)
{
foreach(DataRow in dt.rows)
{
entity =new entity();//entity为实体类
entity.a=row[""];//将数据赋值给实体的属性a,依次类推
list.add(entity);
}
return list;
}
return null;
List<entity> list=new List<entity>();
if(dt.Row.count>0)
{
foreach(DataRow in dt.rows)
{
entity =new entity();//entity为实体类
entity.a=row[""];//将数据赋值给实体的属性a,依次类推
list.add(entity);
}
return list;
}
return null;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询