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条)