Ejemplo n.º 1
0
 public void Delete(Expression <Func <T, bool> > predicate)
 {
     if (predicate == null)
     {
         throw new ArgumentNullException(nameof(predicate));
     }
     RepositoryContext.DeleteWhere(predicate);
 }