예제 #1
0
        public ActionResult Create(PrEntry prentry)
        {
            if (ModelState.IsValid)
            {
                db.PrEntries.AddObject(prentry);
                db.SaveChanges();
                return RedirectToAction("Index");
            }

            ViewBag.worldid = new SelectList(db.PrWorlds, "worldid", "worldname", prentry.worldid);
            return View(prentry);
        }
예제 #2
0
 public ActionResult Edit(PrEntry prentry)
 {
     if (ModelState.IsValid)
     {
         db.PrEntries.Attach(prentry);
         db.ObjectStateManager.ChangeObjectState(prentry, EntityState.Modified);
         db.SaveChanges();
         return RedirectToAction("Details", new { id = prentry.entryid });
     }
     ViewBag.worldid = new SelectList(db.PrWorlds, "worldid", "worldname", prentry.worldid);
     return View(prentry);
 }
예제 #3
0
 /// <summary>
 /// Create a new PrEntry object.
 /// </summary>
 /// <param name="entryid">Initial value of the entryid property.</param>
 /// <param name="name">Initial value of the name property.</param>
 /// <param name="worldid">Initial value of the worldid property.</param>
 /// <param name="type">Initial value of the type property.</param>
 public static PrEntry CreatePrEntry(global::System.Int32 entryid, global::System.String name, global::System.Int32 worldid, global::System.Byte type)
 {
     PrEntry prEntry = new PrEntry();
     prEntry.entryid = entryid;
     prEntry.name = name;
     prEntry.worldid = worldid;
     prEntry.type = type;
     return prEntry;
 }
예제 #4
0
 /// <summary>
 /// Deprecated Method for adding a new object to the PrEntries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPrEntries(PrEntry prEntry)
 {
     base.AddObject("PrEntries", prEntry);
 }