Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // https://www.youtube.com/watch?v=rtXpYpZdOzM&t=1159s
- using System;
- using System.Collections.Generic;
- using System.Linq.Expressions;
- namespace Queries.Core.Repositories
- {
- public interface IRepository<TEntity> where TEntity : class
- {
- TEntity Get(int id);
- IEnumerable<TEntity> GetAll();
- IEnumerable<TEntity> Find(Expression<Func<TEntity, bool>> predicate);
- // This method was not in the videos, but I thought it would be useful to add.
- TEntity SingleOrDefault(Expression<Func<TEntity, bool>> predicate);
- void Add(TEntity entity);
- void AddRange(IEnumerable<TEntity> entities);
- void Remove(TEntity entity);
- void RemoveRange(IEnumerable<TEntity> entities);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement