Category: MVC 4

MVC 4 map anonymous Data Entity

เกิดขึ้นในกรณีที่ จะ Add View ปรากฏว่า Field มันใช้แบบ multi ต้อง Add Class using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MvcApplication5.Models { public class MyStudent { public Int32 id {…

MVC 4.0 Map Route

New Project MVC Application c# Right Click Controllers ->Add->Controller->Student Add View ใส่โค้ดตามตัวอย่าง using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcApplication1.Controllers { public class StudentController : Controller…