Lv.的博客

实体添加映射

modelBuilder.Entity<Person>()

.Map(m => { m.Properties(p => new { p.身高, p.体重 }); m.ToTable("A"); })

.Map(m => { m.Properties(p => new { p.身份证号码 }); m.ToTable("B"); });

posted @ 2016-06-30 17:37  Avatarx  阅读(157)  评论(0编辑  收藏  举报