Creating a repository class for each entity type could result in a lot of redundant code, and resulting in partial updates.
In the DAL folder, create a GenericRepository.cs
and replace the following code.
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace RepositoryPatternDemo.DAL
{
public class GenericRepository<TEntity> where TEntity : class
{
internal BookStore context;
internal DbSet<TEntity> dbSet;
public GenericRepository(BookStore context)
{
this.context = context;
this.dbSet = context.Set<TEntity>();
}
public virtual IEnumerable<TEntity> Get(
Expression<Func<TEntity, bool>> filter = null,
Func<IQueryable<TEntity>, IOrderedQueryable<TEntity>> orderBy = null,
string includeProperties = "")
{
IQueryable<TEntity> query = dbSet;
if (filter != null)
{
query = query.Where(filter);
}
foreach (var includeProperty in includeProperties.Split
(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
{
query = query.Include(includeProperty);
}
if (orderBy != null)
{
return orderBy(query).ToList();
}
else
{
return query.ToList();
}
}
public virtual TEntity GetByID(object id)
{
return dbSet.Find(id);
}
public virtual void Insert(TEntity entity)
{
dbSet.Add(entity);
context.SaveChanges();
}
public virtual void Delete(object id)
{
TEntity entityToDelete = dbSet.Find(id);
Delete(entityToDelete);
}
public virtual void Delete(TEntity entityToDelete)
{
if (context.Entry(entityToDelete).State == EntityState.Detached)
{
dbSet.Attach(entityToDelete);
}
dbSet.Remove(entityToDelete);
context.SaveChanges();
}
public virtual void Update(TEntity entityToUpdate)
{
dbSet.Attach(entityToUpdate);
context.Entry(entityToUpdate).State = EntityState.Modified;
context.SaveChanges();
}
}
}
Let's update the AuthorController
to use the GenericRepository
instead of AuthorRepository
.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.EntityFrameworkCore;
using RepositoryPatternDemo.DAL;
using RepositoryPatternDemo.Models;
namespace RepositoryPatternDemo.Controllers
{
public class AuthorController : Controller
{
private GenericRepository<Author> repository;
public AuthorController(BookStore context)
{
repository = new GenericRepository<Author>(context);
}
// GET: Author
public IActionResult Index()
{
return View(repository.Get());
}
// GET: Author/Details/5
public IActionResult Details(int? id)
{
if (id == null)
{
return NotFound();
}
var author = repository.GetByID((int)id);
if (author == null)
{
return NotFound();
}
return View(author);
}
// GET: Author/Create
public IActionResult Create()
{
return View();
}
// POST: Author/Create
// To protect from overposting attacks, enable the specific properties you want to bind to.
// For more details, see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Create([Bind("AuthorId,FirstName,LastName,BirthDate")] Author author)
{
if (ModelState.IsValid)
{
repository.Insert(author);
return RedirectToAction(nameof(Index));
}
return View(author);
}
// GET: Author/Edit/5
public IActionResult Edit(int? id)
{
if (id == null)
{
return NotFound();
}
var author = repository.GetByID((int)id);
if (author == null)
{
return NotFound();
}
return View(author);
}
// POST: Author/Edit/5
// To protect from overposting attacks, enable the specific properties you want to bind to.
// For more details, see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Edit(int id, [Bind("AuthorId,FirstName,LastName,BirthDate")] Author author)
{
if (id != author.AuthorId)
{
return NotFound();
}
if (ModelState.IsValid)
{
try
{
repository.Update(author);
}
catch (DbUpdateConcurrencyException)
{
}
return RedirectToAction(nameof(Index));
}
return View(author);
}
// GET: Author/Delete/5
public IActionResult Delete(int? id)
{
if (id == null)
{
return NotFound();
}
var author = repository.GetByID((int)id);
if (author == null)
{
return NotFound();
}
return View(author);
}
// POST: Author/Delete/5
[HttpPost, ActionName("Delete")]
[ValidateAntiForgeryToken]
public IActionResult DeleteConfirmed(int id)
{
var author = repository.GetByID(id);
repository.Delete(id);
return RedirectToAction(nameof(Index));
}
}
}
Press Ctrl+F5
to run the project, click the Authors tab to see the test data.
The pages look and work the same as it did before you changed the code to use the generic repository.