Exemplo n.º 1
0
 public List <Product> GetAll(Expression <Func <Product, bool> > filter = null)
 {
     using (NortwindContext context = new NortwindContext())
     {
         return(filter == null?context.Set <Product>().ToList() : context.Set <Product>().Where(filter).ToList());
     }
 }
Exemplo n.º 2
0
 public Product Get(Expression <Func <Product, bool> > filter)
 {
     using (NortwindContext context = new NortwindContext())
     {
         return(context.Set <Product>().SingleOrDefault(filter));
     }
 }
Exemplo n.º 3
0
        //NuGet: Kodların konulup ortak kullanıldığı mekan



        public void Add(Product entity)
        {
            //IDisposable pattern implamentation of c#

            using (NortwindContext context = new NortwindContext())
            {
                var addedEntity = context.Entry(entity);
                addedEntity.State = EntityState.Added;
                context.SaveChanges();
            }
        }
 public ProductosController(NortwindContext nortwindContext)
 {
     this._nortwindContext = nortwindContext;
 }
Exemplo n.º 5
0
 public ProductBusiness(NortwindContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 6
0
 public CategoryBusiness(NortwindContext dbContext)
 {
     _dbContext = dbContext;
 }