// Summary: // Reloads the entity from the database overwriting any property values with values // from the database. The entity will be in the Unchanged state after calling this // method. public void Reload();
public ActionResult QueryData()
{
var db = new Budget_Entities();
var listCampus = db.VF_CAMPUS.Where(w => w.CAMP_NAME_THAI.Contains("วิทย"));
returnView(listCampus);
}
public ActionResult UpdateData(int itemID)
{
bool isSuccess = true;
var db = new Budget_Entities();
var itemForUpdate = db.I_ITEM.Find(itemID);
itemForUpdate.ITEM_THAI_NAME = "รายการวัสดุแก้ไข";
db.SaveChanges();
returnView(isSuccess);
}
Remove ข้อมูล
public ActionResult RemoveData(int itemID)
{
bool isSuccess = true;
var db = new Budget_Entities();
var itemForRemove = db.I_ITEM.Find(itemID);
db.I_ITEM.Remove(itemForRemove);
db.SaveChanges();
returnView(isSuccess);
}
ซึ่งจากทั้ง 4 ตัวอย่างจะมีการประกาศตัวแปร var db = new Budget_Entities(); เป็นการ new object ขึ้นมาเพื่อที่จะเข้าถึง entity ภายใน และทำการ query ข้อมูล, set ค่าให้กับ attribute หรือลบข้อมูล หลังจากที่จัดการกับตัว entity เสร็จแล้ว จะเรียกใช้งาน method SaveChanged() ซึ่งเป็นการสั่งให้ entity Model ทำการ execute และเปลี่ยนแปลงข้อมูลตามที่เราได้เขียน code ไว้ไปยังฐานข้อมูล เป็นอันเสร็จกระบวนการในการเปลี่ยนแปลงข้อมูลที่กระทำกับฐานข้อมูล จากนั้นเราจะเอาค่านั้นไปใช้ต่อหรือ จะ return ค่า ไปยัง View เพื่อแสดงผลต่อไปก็แล้วแต่ผู้ใช้เลยค่ะ