时间:2021-07-01 10:21:17 帮助过:20人阅读
然后是实现 Repository.cs
public class Repository:IRepository { private DbContext context; public Repository(DbContext dbcontext) { context = dbcontext; } public IQueryable<T> All<T>() where T : class { return context.Set<T>().AsNoTracking(); } public void Insert<T>(T entity) where T : class { context.Set<T>().Add(entity); } public T Get<T>(Expression<Func<T, bool>> conditions) where T : class { return All<T>().FirstOrDefault(conditions); } public void Update<T>(T entity) where T : class { var entry = context.Entry(entity); if (entry.State == EntityState.Detached) { context.Set<T>().Attach(entity); } entry.State = EntityState.Modified; } public void Delete<T>(T entity) where T : class { var entry = context.Entry(entity); if (entry.State == EntityState.Detached) { context.Set<T>().Attach(entity); } entry.State = EntityState.Deleted; } public int SaveChanges() { return context.SaveChanges(); } public void Dispose() { context.Dispose(); } }
具体的使用:
可以写一个DbFactory方法,用来生成一个数据库连接(对象)
public class DbFactory { //这里可能会有数据库连接串什么的,具体情况具体应用 public static IRepository Create() { return new Repository(new DbFactory().DbContext); } }
在业务逻辑层,我们可以
using(var db = DbFactory.Create()) { // 这里可以是增删改的代码, // 例如db.Insert<User>(user); db.Insert<UserOther>(uo);
// 可以任意跨表,EntityFramework 自带事务,最后SaveChanges会一并处理
int result = db.SaveChanges(); //SaveChanges()会返回一个更改数字,所以可以用一个int类型的数字来查看 结果。 }
一个基于EntityFramework Core的简单数据库访问层,适用于轻量级数据库业务
标签:context upd int 最好 server nuget 类型 ges ati