| 1234567891011121314151617181920212223242526272829 |
- using Lottomat.Application.Entity;
- using System.Data.Entity.ModelConfiguration;
- namespace Lottomat.Application.Mapping
- {
- /// <summary>
- /// 版 本
- /// Copyright (c) 2016-2017
- /// 创建人:赵轶
- /// 日 期:2016.05.11 16:23
- /// 描 述:注册账户
- /// </summary>
- public class AccountMap : EntityTypeConfiguration<AccountEntity>
- {
- public AccountMap()
- {
- #region 表、主键
- //表
- this.ToTable("Account");
- //主键
- this.HasKey(t => t.AccountId);
- #endregion
- #region 配置关系
- #endregion
- }
- }
- }
|