在做MVC+EF CodeFirst 的Demo时,碰到的问题,

在组册用户时,要让用户输入确认密码,但是数据库中又不需要保存这个字段,解决方案很多了,这里我列出通过EF Code First的解决方案。

   UserInfo实体
    public class UserInfoModel
{
[UIHint("HiddenInput")]
public int UserId { get; set; }
[Display(Name = "用户名")]
public string UserName { get; set; }
[Display(Name = "密码")]
[DataType(DataType.Password)]
public string UserPwd { get; set; }
[Display(Name = "确认密码")]
[DataType(DataType.Password)]
public string ConfirmUserPwd { get; set; } public string Email { get; set; }
public DateTime RegisterDate { get; set; }
[Display(Name = "备注")]
public string Memo { get; set; }
public virtual RoleInfoModel Role { get; set; }
}
   //UserInfo的Fluent API  配置类
public class UserInfoConfiguration : EntityTypeConfiguration<UserInfoModel>
{
public UserInfoConfiguration()
{
HasKey(c => c.UserName);
Property(c => c.UserId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity); //通过Map也可以忽略
//Map(l =>
//{
// l.Properties(x => new { x.UserId, x.UserName, x.UserPwd, x.Email, x.RegisterDate, x.Memo }); //}); Ignore(c => c.ConfirmUserPwd); //忽略这个属性
}
}
   关于EntityTypeConfiguration<TModel>.Map(),这个方法很强大。
   定义:
           public class EntityTypeConfiguration<TEntityType> : StructuralTypeConfiguration<TEntityType> where TEntityType : class
{
//……省略N行
public EntityTypeConfiguration<TEntityType> Map(Action<EntityMappingConfiguration<TEntityType>> entityMappingConfigurationAction); //…… }



   具体使用在以下5个方面:
   1.可以实现同一个实体映射到不同的表,也就是分割实体。
     现有StudentInfo实体类如下:
    public class Student
{
public Student()
{ }
public string StudentId { get; set; }
public string StudentName { get; set; }
public bool Sex { get; set; }
public DateTime Birthday { get; set; }
public string Email { get; set; }
public string QQ { get; set; }
public string MobilePhone { get; set; }
public string FixedPhone { get; set; }
public byte[] Photo { get; set; }
}

 
    public class StudentConfig : System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<Student>
{
public StudentConfig()
{
HasKey(c => c.StudentId);
Map(c =>
{
c.Properties(l => new { l.StudentName, l.Sex, l.QQ, l.FixedPhone, l.MobilePhone });
c.ToTable("StudentBasicInfo");
});
Map(c =>
{ c.Properties(l => new { l.Photo });
c.ToTable("StudentPhoto");
});
}
}

   生成的数据库表:
    
   

   2.可以实现多个实体映射到同一个表。
现有student和studentphoto实体类:
    public class Student
{
public Student()
{ }

public string StudentId { get; set; }

        public string StudentName { get; set; }
public bool Sex { get; set; }
public DateTime Birthday { get; set; }
public string Email { get; set; }
public string QQ { get; set; }
public string MobilePhone { get; set; }
public string FixedPhone { get; set; }

public StudentPhoto Photo { get; set; }

    }

    public class StudentPhoto
{

public string StudentId { get; set; }

        public byte[] Photo { get; set; }
       

public Student student { get; set; }

    }
 


    public class StudentConfig : System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<Student>
{
public StudentConfig()
{
HasKey(c => c.StudentId);

HasRequired(c => c.Photo).WithRequiredDependent(c => c.student);

            ToTable("student");
}
}
public class StudentPhotoConfig : System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<StudentPhoto>
{
public StudentPhotoConfig()
{
HasKey(c => c.StudentId);
ToTable("student");
}
}

   要实现这个功能要注意以下几点:
1.实体之间要有一对一的关系(实体中绿色字体)
2.实体之间要有完全相同的主键(实体中红色字体)
3.配着类中要指明一对一的关系(StudentConfig 类中红色字体)
4.相同的表名。(ToTable("student");) 
   生成的数据库表:
 
   3.可以实现每个层次结构一张表 (TPH) 继承
   4.可以实现每个类型一张表 (TPT) 继承
   5.可以实现每个具体类型一张表 (TPC) 继承
   
     



Entity Framework Code First 中使用 Fluent API 笔记。的更多相关文章

  1. Entity Framework(七):Fluent API配置案例

    一.配置主键 要显式将某个属性设置为主键,可使用 HasKey 方法.在以下示例中,使用了 HasKey 方法对 Product 类型配置 ProductId 主键. 1.新加Product类 usi ...

  2. Entity Framework Code First实体对象变动跟踪

    Entity Framework Code First通过DbContext.ChangeTracker对实体对象的变动进行跟踪,实现跟踪的方式有两种:变动跟踪快照和变动跟踪代理. 变动跟踪快照:前面 ...

  3. Entity Framework Code First 学习日记(1)精

    我最近几天正在学习Entity Framework Code First.我打算分享一系列的学习笔记,今天是第一部分: 为什么要使用Code First: 近 年来,随着domain driven d ...

  4. Entity Framework 实体框架的形成之旅--Code First模式中使用 Fluent API 配置(6)

    在前面的随笔<Entity Framework 实体框架的形成之旅--Code First的框架设计(5)>里介绍了基于Code First模式的实体框架的经验,这种方式自动处理出来的模式 ...

  5. How to: Use the Entity Framework Code First in XAF 如何:在 XAF 中使用EF CodeFirst

    This topic demonstrates how to create a simple XAF application with a business model in a DbContext ...

  6. Entity Framework Code First属性映射约定

    Entity Framework Code First与数据表之间的映射方式有两种实现:Data Annotation和Fluent API.本文中采用创建Product类为例来说明tity Fram ...

  7. Entity Framework Code First关系映射约定

    本篇随笔目录: 1.外键列名默认约定 2.一对多关系 3.一对一关系 4.多对多关系 5.一对多自反关系 6.多对多自反关系 在关系数据库中,不同表之间往往不是全部都单独存在,而是相互存在关联的.两个 ...

  8. Entity Framework Code First (三)Data Annotations

    Entity Framework Code First 利用一种被称为约定(Conventions)优于配置(Configuration)的编程模式允许你使用自己的 domain classes 来表 ...

  9. Entity Framework Code First (二)Custom Conventions

    ---------------------------------------------------------------------------------------------------- ...

随机推荐

  1. C语言-指针

    C指针基础知识 C语言中,指针无疑是最令人头疼的.今天无事就来学学C语言的指针,在此留下点笔记,仅供个人参考. 首先要搞懂的是,指针是什么? 指针:是用来存放内存地址的变量. 不管是什么类型的指针,存 ...

  2. iOS-多线程基础

    进程与线程: 1>   一个应用程序对应一个进程,一个进程帮助程序占据一块存储空间 2>   要想在进程中执行任务,就必须开启线程,一条线程就代表一个任务 3>   一个进程中允许开 ...

  3. KnockoutJS 3.X API 第七章 其他技术(5) 使用其他事件处理程序

    在大多数情况下,数据绑定属性提供了一种干净和简洁的方式来绑定到视图模型. 然而,事件处理是一个常常会导致详细数据绑定属性的领域,因为匿名函数通常是传递参数的推荐技术. 例如: <a href=& ...

  4. 【深入浅出Linux网络编程】 “实践 -- TCP & UDP”

    通过上一篇博客的学习,你应该对基于epoll的事件触发机制有所掌握,并且通过阅读sio.c/sio.h应该也学会了如何封装epoll以及如何通过设计令epoll更加实用(用户回调,用户参数). 简单回 ...

  5. Ucos系统任务间的通信详解

    物联网开发中,ucos系统任务间的通信是指,两个任务之间有数据的交互,具体的一起来看看吧. 1)消息邮箱 我们还是提供两个任务Task1和Task2,假设我们还是解决刚刚的问题,Task1进行按键扫描 ...

  6. CTE 递归查询

    使用CTE进行递归查询,能够实现对层次结构的数据的快速访问,非常有用. TSql CTE 递归原理探究 TSql 分层和递归查询 1,CTE的递归结构 递归查询的结构包括两部分:起始点和迭代公式. 使 ...

  7. UML基础系列:类图

    类图描述系统中类的静态结构,它不仅定义系统中的类,描述类之间的联系,如关联.依赖.聚合等,还包括类的内部结构(类的属性和操作).类图描述的是静态关系,在系统的整个生命周期中都是有效的.对象图是类图的实 ...

  8. 用 namspace 隔离 DHCP 服务 - 每天5分钟玩转 OpenStack(90)

    Neutron 通过 dnsmasq 提供 DHCP 服务,而 dnsmasq 如何独立的为每个 network 服务呢? 答案是通过 Linux Network Namespace 隔离,本节将详细 ...

  9. 【CSS进阶】原生JS getComputedStyle等方法解析

    最近一直在研读 jQuery 源码,初看源码一头雾水毫无头绪,真正静下心来细看写的真是精妙,让你感叹代码之美. 其结构明晰,高内聚.低耦合,兼具优秀的性能与便利的扩展性,在浏览器的兼容性(功能缺陷.渐 ...

  10. Git-Notes

    1.Git安装,直接在官网下载安装即可. 2.Git配置,使用config选项,配置名字和邮箱,如下所示 C:\Users\1yyg>git config --global user.name ...