码迷,mamicode.com
首页 > 其他好文 > 详细

Code First 中的 TPH TPT TPC

时间:2015-04-11 17:44:08      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

      public class Blog
      {
            public int Id { get; set; }
            public DateTime Creationdate { get; set; }
            public string ShortDescription { get; set; }
            public string Title { get; set; }
            public string AboutTheAuthor { get; set; }
      }

      public class PictureBlog : Blog
      {
            public string PicDescription { get; set; }
      }

      public class VideoBlog : Blog
      {
            public string VideoDescription { get; set; }
      }

配置 TPH 形成的数据表:

技术分享

配置 TPT 形成的数据表:

技术分享

配置 TPC 形成的数据表:

技术分享

Code First 中的 TPH TPT TPC

标签:

原文地址:http://www.cnblogs.com/yipeng-yu/p/4418003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!