Beispiel #1
0
        public ActionResult Products(int categoryId)
        {
            NorthwindDb           db       = new NorthwindDb(connectionString);
            IEnumerable <Product> products = db.GetProductsByCategoryId(categoryId);

            return(View(products));
        }