Advertisement
wingman007

IRepositorySuggested

Sep 28th, 2016
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.76 KB | None | 0 0
  1. // https://www.youtube.com/watch?v=rtXpYpZdOzM&t=1159s
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq.Expressions;
  5.  
  6. namespace Queries.Core.Repositories
  7. {
  8.     public interface IRepository<TEntity> where TEntity : class
  9.     {
  10.         TEntity Get(int id);
  11.         IEnumerable<TEntity> GetAll();
  12.         IEnumerable<TEntity> Find(Expression<Func<TEntity, bool>> predicate);
  13.  
  14.         // This method was not in the videos, but I thought it would be useful to add.
  15.         TEntity SingleOrDefault(Expression<Func<TEntity, bool>> predicate);
  16.  
  17.         void Add(TEntity entity);
  18.         void AddRange(IEnumerable<TEntity> entities);
  19.        
  20.         void Remove(TEntity entity);
  21.         void RemoveRange(IEnumerable<TEntity> entities);
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement