Ejemplo n.º 1
0
 public List <Car> GetAll(Expression <Func <Car, bool> > filter = null)
 {
     using (ReCapDatabaseContext context = new ReCapDatabaseContext())
     {
         return(filter == null
             ? context.Set <Car>().ToList()
             : context.Set <Car>().Where(filter).ToList());
     }
 }
Ejemplo n.º 2
0
 public Car Get(Expression <Func <Car, bool> > filter)
 {
     using (ReCapDatabaseContext context = new ReCapDatabaseContext())
     {
         return(context.Set <Car>().SingleOrDefault(filter));
     }
 }