//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace EMIS.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Common;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration;
using System.Data.Entity.Infrastructure;
using System.ComponentModel.DataAnnotations.Schema;
internal partial class CF_StaffProfile_Mapping : EntityTypeConfiguration
{
public CF_StaffProfile_Mapping()
{
this.HasKey(t => t.UserID);
this.ToTable("CF_StaffProfile");
this.Property(t => t.UserID).HasColumnName("UserID");
this.Property(t => t.UsedName).HasColumnName("UsedName").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Nation).HasColumnName("Nation");
this.Property(t => t.Place).HasColumnName("Place").HasMaxLength(20);
this.Property(t => t.EducationCode).HasColumnName("EducationCode");
this.Property(t => t.Telephone).HasColumnName("Telephone").HasMaxLength(50);
this.Property(t => t.OfficeTelephone).HasColumnName("OfficeTelephone").HasMaxLength(50);
this.Property(t => t.Mobile).HasColumnName("Mobile").HasMaxLength(50);
this.Property(t => t.Email).HasColumnName("Email").HasMaxLength(50);
this.Property(t => t.QQ).HasColumnName("QQ").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Nationality).HasColumnName("Nationality").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.HealthState).HasColumnName("HealthState");
this.Property(t => t.HousePhone).HasColumnName("HousePhone").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Address).HasColumnName("Address").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.Postcode).HasColumnName("Postcode").IsUnicode(false).HasMaxLength(10);
this.Property(t => t.HomeAddress).HasColumnName("HomeAddress").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.NowAddress).HasColumnName("NowAddress").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.Residence).HasColumnName("Residence").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.Speciality).HasColumnName("Speciality").IsUnicode(false).HasMaxLength(500);
this.Property(t => t.WeChatNum).HasColumnName("WeChatNum").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.Religion).HasColumnName("Religion");
this.Property(t => t.Account).HasColumnName("Account").IsUnicode(false).HasMaxLength(50);
this.HasRequired(t => t.CF_Staff).WithOptional(t => t.CF_StaffProfile);
}
}
}