摘要: 1,增加EntityFramework的引用2,创建实体类 public class Invoice { public Invoice() { LineItems = new List(); } public int ID { get; set; } public DateTime InvoiceDate { get; set; } public double Total { get; set; } public virtual ICollection LineIte... 阅读全文
posted @ 2014-01-22 10:59 尼姑哪里跑 阅读(614) 评论(0) 推荐(0)