Ejemplo n.º 1
0
 public IQueryable <northwinddb.Models.Customer> GetCustomers
     ([Service] northwinddb.Context.NorthWindDBContext dBContext, string customerId)
 {
     return(dBContext.Customers.Where(customer => customer.CustomerId.Equals(customerId)).AsQueryable());
 }
Ejemplo n.º 2
0
 public IQueryable <northwinddb.Models.Employee> GetEmployees([Service] northwinddb.Context.NorthWindDBContext dBContext)
 {
     return(dBContext.Employees.AsQueryable());
 }