lst(i) = List1.List(i)NextEnd Sub请将List里的多项内容赋值于数组变量lst(i),用于你写入数据库的语言中.
先声明一个你要添加的表实体类public class student
{
public int id{getset}
public string name{getset}
}
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)
{
.... *** 作数据库
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)