Ejemplo n.º 1
0
 public List <Brand> GetAll(Expression <Func <Brand, bool> > filter = null)
 {
     using (ReCapProjectContext context = new ReCapProjectContext())
     {
         return(filter == null?context.Set <Brand>().ToList()
                    : context.Set <Brand>().Where(filter).ToList());
     }
 }
Ejemplo n.º 2
0
 public List <Car> GetAll(Expression <Func <Car, bool> > filter = null)
 {
     using (ReCapProjectContext context = new ReCapProjectContext())
     {
         //select*from product döndürüyor alttaki kod ve listeye çeviriyor
         return(filter == null?context.Set <Car>().ToList()
                    : context.Set <Car>().Where(filter).ToList());
     }
 }
Ejemplo n.º 3
0
 public Brand Get(Expression <Func <Brand, bool> > filter)
 {
     using (ReCapProjectContext context = new ReCapProjectContext())
     {
         return(context.Set <Brand>().SingleOrDefault(filter));
     }
 }
Ejemplo n.º 4
0
 public Color Get(Expression <Func <Color, bool> > filter)
 {
     using (ReCapProjectContext context = new ReCapProjectContext())
     {
         //contexti set ediyor color türünde sonra singleOrDefault içinde filtreye göre veriyi getiriyor ;)
         return(context.Set <Color>().SingleOrDefault(filter));
     }
 }