-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenericRepository.cs
69 lines (58 loc) · 1.81 KB
/
GenericRepository.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using Core.Entities;
using Core.Interfaces;
using Core.Specifications;
using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Infrastructure
{
public class GenericRepository<T> : IGenericRepository<T> where T : BaseEntity
{
private readonly StoreContext _context;
internal DbSet<T> dbSet;
public GenericRepository(StoreContext context)
{
_context = context;
this.dbSet = _context.Set<T>(); //this means _db.Categories == dbSet
}
public void Add(T entity)
{
dbSet.Add(entity);
}
public async Task<int> CountAsync(ISpecification<T> spec)
{
return await ApplySpecification(spec).CountAsync();
}
public void Delete(T entity)
{
dbSet.Remove(entity);
}
public async Task<T> GetByIdAsync(int id)
{
return await dbSet.FindAsync(id);
}
public async Task<T> GetEntityWithSpec(ISpecification<T> spec)
{
return await ApplySpecification(spec).FirstOrDefaultAsync();
}
public async Task<IReadOnlyList<T>> ListAllAsync()
{
return await dbSet.ToListAsync();
}
public async Task<IReadOnlyList<T>> ListAsync(ISpecification<T> spec)
{
return await ApplySpecification(spec).ToListAsync();
}
public void Update(T entity)
{
dbSet.Attach(entity);
_context.Entry(entity).State = EntityState.Modified;
}
private IQueryable<T> ApplySpecification(ISpecification<T> spec)
{
return SpecificationEvaluator<T>.GetQuery(dbSet.AsQueryable(), spec);
}
}
}