1.在数据库中新建表格,并插入记录,SQL如下: USE WFC_DB GO create table Students ( Id ,) not null, Name ), Age int, Score int ) GO , ) , ) 注意:表的Id字段设为自增长,即 IDENTITY(1,1) 2.新建类库项目,添加实体类与映射文件 实体类 Student.cs: public class Student { public virtual int Id { get; set; } publi…