EF框架学习

时间:2018-04-04 09:31:17
【文件属性】:

文件名称:EF框架学习

文件大小:18KB

文件格式:DOCX

更新时间:2018-04-04 09:31:17

EF学习文档

1.Product类 public class Product { Public Product() { this.Name=””; this.Category = new Category(); } public string ID{get; set;} public string Name{get; set;} public virtual Category Category{get; set;} } 2.Category类 public class Category { public Category() { this.Name = “”; this.Products = new List(); }


网友评论