2024-11-07 16:05:10
先声明一个你要添加的表实体类
public class student
{
public int id{get;set;}
public string name{get;set;}
}
List<student>st=new List<student>();
foreach(var item in st)
{
Model.student st=new Model.student();
st.id=item.id;
st.name=itemt.name;
this.Insert(st);
}
//根据实体添加数据库
public string Insert(Model.student student)
{
....操作数据库
}
操作数据库那里可否写得详细一下,最好是用参数传递的
2024-11-07 06:53:44
2024-11-07 00:46:25
也就是说,例如我有三个控件,想添加数据进数据库,我想打算用list作为集合,可以一次把三个数据写进数据库,在写入数据库的时候,SQL语句是用参数传递的