单个添加:
using RoadFlow.Mapper;
using (var db = new DataContext())
{
db.Add(appLibrary);
return db.SaveChanges();
}
appLibrary为对应的表的实体。
批量添加:
using RoadFlow.Mapper;
using (var db = new DataContext())
{
db.AddRange(appLibrarys);
return db.SaveChanges();
}
appLibrarys 为 List<Model.AppLibrary> 表对应的实体列表,db.SaveChanges()为保存更新提交事务。否则新增不会生效。
联系QQ:493501010电话:136 0832 5512(微信同号)邮箱:road@roadflow.net
Copyright 2014 - 2024 重庆天知软件技术有限公司 版权所有
|