使用 Entity Framework 6 的存储库模式更新记录
Updating records using a Repository Pattern with Entity Framework 6
我正在编写一个简单的博客应用程序并尝试在我的通用存储库模式中建立 CRUD 操作,但我在我的更新方法中收到错误消息:
'System.Data.Entity.DbSet' does not contain a definition for
'Entry' and no extension method 'Entry' accepting a first argument of
type 'System.Data.Entity.DbSet' could be found (are you missing a
using directive or an assembly reference?)
我遵循 post that explained 如何 'fake' Entry() 通过在 DbContext 上添加额外的间接级别。但是在 MVC 5 中,我们继承自:IdentityDbContext 而不是 DbContext。我确实尝试实施作者的修复,但错误仍然存在。
我的问题
如何使用 IdentityDbContext 向 Entity Framework6 中的存储库添加更新方法?如果我们不应该这样做,那么我该如何使用这种模式更新记录?
我应该注意到所有其他方法都按预期工作。
我的通用存储库:
public class BlogEngineRepository<T> : IRepository<T> where T : class
{
protected DbSet<T> DbSet;
public BlogEngineRepository(DbContext dataContext)
{
DbSet = dataContext.Set<T>();
}
#region IRepository<T> Members
public void Insert(T entity)
{
DbSet.Add(entity);
}
public void Delete(T entity)
{
DbSet.Remove(entity);
}
public void Update(T entity)
{
DbSet.Entry(entity).State = System.Data.Entity.EntityState.Modified;
}
public IQueryable<T> SearchFor(Expression<Func<T, bool>> predicate)
{
return DbSet.Where(predicate);
}
public IQueryable<T> GetAll()
{
return DbSet;
}
public T GetById(int id)
{
return DbSet.Find(id);
}
#endregion
}
好的,我明白了。新存储库模式 (Entity Framework 6) 中没有 Update 方法的原因是因为 不需要一个 。您只需通过 ID 获取您的记录,进行更改,然后 commit/save.
例如,这是我的 postController 中的编辑 POST 方法:
[HttpPost]
[ValidateAntiForgeryToken]
[ValidateInput(false)]
public ActionResult Edit([Bind(Include = "Id,Title,IntroText,Body,Modified,Author")] Post post)
{
using (UnitOfWork uwork = new UnitOfWork())
{
Post edit = uwork.PostRepository.GetById(post.Id);
edit.Title = post.Title;
edit.IntroText = post.IntroText;
edit.Body = post.Body;
edit.Modified = DateTime.Now;
uwork.Commit();
return RedirectToAction("Index");
}
}
RepositoryPattern 看起来像这样:
public class BlogEngineRepository<T> : IRepository<T> where T : class
{
protected DbSet<T> DbSet;
public BlogEngineRepository(DbContext dataContext)
{
DbSet = dataContext.Set<T>();
}
public void Insert(T entity)
{
DbSet.Add(entity);
}
public void Delete(T entity)
{
DbSet.Remove(entity);
}
public IQueryable<T> SearchFor(Expression<Func<T, bool>> predicate)
{
return DbSet.Where(predicate);
}
public IQueryable<T> GetAll()
{
return DbSet;
}
public T GetById(int id)
{
return DbSet.Find(id);
}
}
更新应该看起来像 () :
[HttpPost]
[ValidateAntiForgeryToken]
[ValidateInput(false)]
public ActionResult Edit([Bind(Include = "Id,Title,IntroText,Body,Modified,Author")] Post post)
{
using (UnitOfWork uwork = new UnitOfWork())
{
post.Modified = DateTime.Now;
uwork.PostRepository.Update(post);
uwork.Commit();
return RedirectToAction("Index");
}
}
RepositoryPattern 看起来像这样:
public class BlogEngineRepository<T> : IRepository<T> where T : class
{
public BlogEngineRepository(DbContext dataContext)
{
DbSet = dataContext.Set<T>();
Context = dataContext;
}
public T Update(T entity)
{
DbSet.Attach(entity);
var entry = Context.Entry(entity);
entry.State = System.Data.EntityState.Modified;
}
}
您可以查看 Efficient way of updating list of entities 答案的完整解释,了解有关更新详情的更多信息。
我正在编写一个简单的博客应用程序并尝试在我的通用存储库模式中建立 CRUD 操作,但我在我的更新方法中收到错误消息:
'System.Data.Entity.DbSet' does not contain a definition for 'Entry' and no extension method 'Entry' accepting a first argument of type 'System.Data.Entity.DbSet' could be found (are you missing a using directive or an assembly reference?)
我遵循 post that explained 如何 'fake' Entry() 通过在 DbContext 上添加额外的间接级别。但是在 MVC 5 中,我们继承自:IdentityDbContext 而不是 DbContext。我确实尝试实施作者的修复,但错误仍然存在。
我的问题
如何使用 IdentityDbContext 向 Entity Framework6 中的存储库添加更新方法?如果我们不应该这样做,那么我该如何使用这种模式更新记录?
我应该注意到所有其他方法都按预期工作。
我的通用存储库:
public class BlogEngineRepository<T> : IRepository<T> where T : class
{
protected DbSet<T> DbSet;
public BlogEngineRepository(DbContext dataContext)
{
DbSet = dataContext.Set<T>();
}
#region IRepository<T> Members
public void Insert(T entity)
{
DbSet.Add(entity);
}
public void Delete(T entity)
{
DbSet.Remove(entity);
}
public void Update(T entity)
{
DbSet.Entry(entity).State = System.Data.Entity.EntityState.Modified;
}
public IQueryable<T> SearchFor(Expression<Func<T, bool>> predicate)
{
return DbSet.Where(predicate);
}
public IQueryable<T> GetAll()
{
return DbSet;
}
public T GetById(int id)
{
return DbSet.Find(id);
}
#endregion
}
好的,我明白了。新存储库模式 (Entity Framework 6) 中没有 Update 方法的原因是因为 不需要一个 。您只需通过 ID 获取您的记录,进行更改,然后 commit/save.
例如,这是我的 postController 中的编辑 POST 方法:
[HttpPost]
[ValidateAntiForgeryToken]
[ValidateInput(false)]
public ActionResult Edit([Bind(Include = "Id,Title,IntroText,Body,Modified,Author")] Post post)
{
using (UnitOfWork uwork = new UnitOfWork())
{
Post edit = uwork.PostRepository.GetById(post.Id);
edit.Title = post.Title;
edit.IntroText = post.IntroText;
edit.Body = post.Body;
edit.Modified = DateTime.Now;
uwork.Commit();
return RedirectToAction("Index");
}
}
RepositoryPattern 看起来像这样:
public class BlogEngineRepository<T> : IRepository<T> where T : class
{
protected DbSet<T> DbSet;
public BlogEngineRepository(DbContext dataContext)
{
DbSet = dataContext.Set<T>();
}
public void Insert(T entity)
{
DbSet.Add(entity);
}
public void Delete(T entity)
{
DbSet.Remove(entity);
}
public IQueryable<T> SearchFor(Expression<Func<T, bool>> predicate)
{
return DbSet.Where(predicate);
}
public IQueryable<T> GetAll()
{
return DbSet;
}
public T GetById(int id)
{
return DbSet.Find(id);
}
}
更新应该看起来像 (
[HttpPost]
[ValidateAntiForgeryToken]
[ValidateInput(false)]
public ActionResult Edit([Bind(Include = "Id,Title,IntroText,Body,Modified,Author")] Post post)
{
using (UnitOfWork uwork = new UnitOfWork())
{
post.Modified = DateTime.Now;
uwork.PostRepository.Update(post);
uwork.Commit();
return RedirectToAction("Index");
}
}
RepositoryPattern 看起来像这样:
public class BlogEngineRepository<T> : IRepository<T> where T : class
{
public BlogEngineRepository(DbContext dataContext)
{
DbSet = dataContext.Set<T>();
Context = dataContext;
}
public T Update(T entity)
{
DbSet.Attach(entity);
var entry = Context.Entry(entity);
entry.State = System.Data.EntityState.Modified;
}
}
您可以查看 Efficient way of updating list of entities 答案的完整解释,了解有关更新详情的更多信息。