1 在Models里面创建类,用[Key]特性指定主键: 2 在Model里面增加导航属性: 3 在web.config里面增加连接字符串 4 创建继承于DbContext的类 5 创建Controller类,生成Index视图 6 在Controller类的Index()里面,通过context.Database.CreateIfNotExist() //BookInfo.cs using System;using System.Collections.Generic;using System…