示例#1
0
 public IQueryable<Product> GetProductByName(string name)
 {
     _Proservice = new ProductService();
     IQueryable<Product> _a = _Proservice.GetByName(name);
     return _a;
 }