コード例 #1
0
 public ActionResult Edit(Vendor vendor)
 {
     if (ModelState.IsValid && Vendor.Update(vendor))
     {
         return RedirectToAction("Index");
     }
     return View(vendor);
 }
コード例 #2
0
ファイル: VendorModel.cs プロジェクト: navygator/service_db
        public static bool Create(Vendor vendor)
        {
            bool result = true;
            try
            {
                db.Vendors.AddObject(vendor);
                db.SaveChanges();
            }
            catch (Exception)
            {
                result = false;
            }

            return result;
        }
コード例 #3
0
ファイル: VendorModel.cs プロジェクト: navygator/service_db
        public static bool Update(Vendor vendor)
        {
            bool result = true;
            try
            {
                EntityDataModelContainer mc = new EntityDataModelContainer();
                mc.Vendors.Attach(vendor);
                mc.ObjectStateManager.ChangeObjectState(vendor, EntityState.Modified);
                mc.SaveChanges();
                db.Refresh(System.Data.Objects.RefreshMode.StoreWins, vendor);
            }
            catch (Exception)
            {
                result = false;
            }

            return result;
        }
コード例 #4
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Vendors EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToVendors(Vendor vendor)
 {
     base.AddObject("Vendors", vendor);
 }
コード例 #5
0
 /// <summary>
 /// Create a new Vendor object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 public static Vendor CreateVendor(global::System.Int32 id, global::System.String name)
 {
     Vendor vendor = new Vendor();
     vendor.Id = id;
     vendor.Name = name;
     return vendor;
 }