摘要:
一、MVC+EF 不管是MVC 还是EF 都有文件夹 Controllers 下边的文件必须以Controller 结尾 WEBAPI 接口不要使用中文名称 二、Linq 查询 多表联查 Linq 查询 使用方法 var query = from a in db.Students join b in 阅读全文
摘要:
一、导航属性 1、错误代码: [Table("Job")] public class JobModel { [Key] public int JId { get; set; } public string Type { get; set; } [ForeignKey("CName")] public 阅读全文
摘要:
EF 简单 添加 一、新建Models 中实体类 在类中添加特性,添加特性之前需要引用命名空间 1、类的上边 [Table("表名称")] 2、主键 [Key] [Table("Student")] public class Student { [Key] public int SId { ge 阅读全文