You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
4.8 KiB
C#
166 lines
4.8 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Haoliang.Data.Repositories
|
|
{
|
|
public class Repository<T> : IRepository<T> where T : class
|
|
{
|
|
protected readonly DbContext _context;
|
|
protected readonly DbSet<T> _dbSet;
|
|
|
|
public Repository(DbContext context)
|
|
{
|
|
_context = context;
|
|
_dbSet = context.Set<T>();
|
|
}
|
|
|
|
public virtual async Task<T> GetByIdAsync(int id)
|
|
{
|
|
return await _dbSet.FindAsync(id);
|
|
}
|
|
|
|
public virtual async Task<IEnumerable<T>> GetAllAsync()
|
|
{
|
|
return await _dbSet.ToListAsync();
|
|
}
|
|
|
|
public virtual async Task<IEnumerable<T>> FindAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
|
|
{
|
|
return await _dbSet.Where(predicate).ToListAsync();
|
|
}
|
|
|
|
public virtual async Task<T> SingleOrDefaultAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
|
|
{
|
|
return await _dbSet.SingleOrDefaultAsync(predicate);
|
|
}
|
|
|
|
public virtual async Task AddAsync(T entity)
|
|
{
|
|
await _dbSet.AddAsync(entity);
|
|
}
|
|
|
|
public virtual async Task AddRangeAsync(IEnumerable<T> entities)
|
|
{
|
|
await _dbSet.AddRangeAsync(entities);
|
|
}
|
|
|
|
public virtual void Update(T entity)
|
|
{
|
|
_dbSet.Attach(entity);
|
|
_context.Entry(entity).State = EntityState.Modified;
|
|
}
|
|
|
|
public virtual void Remove(T entity)
|
|
{
|
|
_dbSet.Remove(entity);
|
|
}
|
|
|
|
public virtual void RemoveRange(IEnumerable<T> entities)
|
|
{
|
|
_dbSet.RemoveRange(entities);
|
|
}
|
|
|
|
public virtual async Task<int> CountAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate = null)
|
|
{
|
|
return predicate == null ? await _dbSet.CountAsync() : await _dbSet.CountAsync(predicate);
|
|
}
|
|
|
|
public virtual async Task<bool> ExistsAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
|
|
{
|
|
return await _dbSet.AnyAsync(predicate);
|
|
}
|
|
|
|
public virtual async Task<int> SaveAsync()
|
|
{
|
|
return await _context.SaveChangesAsync();
|
|
}
|
|
}
|
|
|
|
public class ReadRepository<T> : IReadRepository<T> where T : class
|
|
{
|
|
protected readonly DbContext _context;
|
|
protected readonly DbSet<T> _dbSet;
|
|
|
|
public ReadRepository(DbContext context)
|
|
{
|
|
_context = context;
|
|
_dbSet = context.Set<T>();
|
|
}
|
|
|
|
public virtual async Task<T> GetByIdAsync(int id)
|
|
{
|
|
return await _dbSet.FindAsync(id);
|
|
}
|
|
|
|
public virtual async Task<IEnumerable<T>> GetAllAsync()
|
|
{
|
|
return await _dbSet.ToListAsync();
|
|
}
|
|
|
|
public virtual async Task<IEnumerable<T>> FindAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
|
|
{
|
|
return await _dbSet.Where(predicate).ToListAsync();
|
|
}
|
|
|
|
public virtual async Task<T> SingleOrDefaultAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
|
|
{
|
|
return await _dbSet.SingleOrDefaultAsync(predicate);
|
|
}
|
|
|
|
public virtual async Task<int> CountAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate = null)
|
|
{
|
|
return predicate == null ? await _dbSet.CountAsync() : await _dbSet.CountAsync(predicate);
|
|
}
|
|
|
|
public virtual async Task<bool> ExistsAsync(System.Linq.Expressions.Expression<Func<T, bool>> predicate)
|
|
{
|
|
return await _dbSet.AnyAsync(predicate);
|
|
}
|
|
}
|
|
|
|
public class WriteRepository<T> : IWriteRepository<T> where T : class
|
|
{
|
|
protected readonly DbContext _context;
|
|
protected readonly DbSet<T> _dbSet;
|
|
|
|
public WriteRepository(DbContext context)
|
|
{
|
|
_context = context;
|
|
_dbSet = context.Set<T>();
|
|
}
|
|
|
|
public virtual async Task AddAsync(T entity)
|
|
{
|
|
await _dbSet.AddAsync(entity);
|
|
}
|
|
|
|
public virtual async Task AddRangeAsync(IEnumerable<T> entities)
|
|
{
|
|
await _dbSet.AddRangeAsync(entities);
|
|
}
|
|
|
|
public virtual void Update(T entity)
|
|
{
|
|
_dbSet.Attach(entity);
|
|
_context.Entry(entity).State = EntityState.Modified;
|
|
}
|
|
|
|
public virtual void Remove(T entity)
|
|
{
|
|
_dbSet.Remove(entity);
|
|
}
|
|
|
|
public virtual void RemoveRange(IEnumerable<T> entities)
|
|
{
|
|
_dbSet.RemoveRange(entities);
|
|
}
|
|
|
|
public virtual async Task<int> SaveAsync()
|
|
{
|
|
return await _context.SaveChangesAsync();
|
|
}
|
|
}
|
|
} |