首先,创建MVC项目,引用EntityFramework,创建了一个Student类 using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace EFF.Models { public class Student { public int StudentID { get; set; } public string Name { get; set; } public i