Lv.的博客
摘要: 1、一对多关系 关系表: Category 分类表 Product 产品表 分类与产品之间的一对多关系 1>、产品实体类不指定外键属性 Domain中类定义: Category.cs 1 using System; 2 using System.Collections.Generic; 3 usin 阅读全文
posted @ 2016-06-14 23:51 Avatarx 阅读(243) 评论(0) 推荐(0) 编辑
摘要: EF Code First数据库映射规则主要包括以下方面: 1、表名及所有者映射 Data Annotation: 指定表名 1 using System.ComponentModel.DataAnnotations;2 3 [Table("Product")]4 public class Prod 阅读全文
posted @ 2016-06-14 23:50 Avatarx 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 前面几节,使用的都是通过EF Code First创建的新数据库,接下来,将开始使用已存在的数据库。 1、使用配置文件设置数据库连接 App.config 数据库连接字符串的name与Data中NorthwindContext.cs类名相同 <?xml version="1.0" encoding= 阅读全文
posted @ 2016-06-14 23:49 Avatarx 阅读(738) 评论(0) 推荐(0) 编辑