ควบคุม:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MvcApplication1.Models;
using System.ComponentModel.DataAnnotations.Schema;
namespace MvcApplication1.Controllers
{
public class studentsController : Controller
{
//
// GET: /students/
public ActionResult details()
{
int id = 16;
studentContext std = new studentContext();
student first = std.details.Single(m => m.RollNo == id);
return View(first);
}
}
}
DbContext Model:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
namespace MvcApplication1.Models
{
public class studentContext : DbContext
{
public DbSet<student> details { get; set; }
}
}
รุ่น:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations.Schema;
namespace MvcApplication1.Models
{
[Table("studentdetails")]
public class student
{
public int RollNo;
public string Name;
public string Stream;
public string Div;
}
}
ตารางฐานข้อมูล:
CREATE TABLE [dbo].[studentdetails](
[RollNo] [int] NULL,
[Name] [nvarchar](50) NULL,
[Stream] [nvarchar](50) NULL,
[Div] [nvarchar](50) NULL
)
ใน global.asax.cs
Database.SetInitializer<MvcApplication1.Models.studentContext>(null);
รหัสด้านบนแสดงรายการชั้นเรียนทั้งหมดที่ฉันกำลังทำงานอยู่ เมื่อเรียกใช้แอปพลิเคชันของฉันฉันได้รับข้อผิดพลาด:
"ตรวจพบข้อผิดพลาดในการตรวจสอบหนึ่งข้อขึ้นไปในระหว่างการสร้างโมเดล" พร้อมกับ "ประเภทเอนทิตีไม่มีการกำหนดคีย์"