Example #1
0
        //
        // Products/Create
        public ActionResult Create()
        {
            var product = new Product();
            UpdateModel( product, Request.Form.AllKeys );

            northwind.AddProduct( product );
            northwind.SubmitChanges();

            return RedirectToAction( "Category", new { ID = product.CategoryID } );
        }
Example #2
0
 // Add a New Product
 public void AddProduct( Product product )
 {
     Products.InsertOnSubmit( product );
 }
Example #3
0
 partial void DeleteProduct( Product instance );
Example #4
0
 partial void UpdateProduct( Product instance );
Example #5
0
 partial void InsertProduct( Product instance );
Example #6
0
 private void detach_Products( Product entity )
 {
     SendPropertyChanging();
     entity.Category = null;
 }
Example #7
0
 private void attach_Products( Product entity )
 {
     SendPropertyChanging();
     entity.Category = this;
 }
Example #8
0
 private void detach_Products( Product entity )
 {
     SendPropertyChanging();
     entity.Supplier = null;
 }
Example #9
0
 private void attach_Products( Product entity )
 {
     SendPropertyChanging();
     entity.Supplier = this;
 }