//------------------------------------------------------------------------------
//
// 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 Sys_ControlItemDetail_Mapping : EntityTypeConfiguration
{
public Sys_ControlItemDetail_Mapping()
{
this.HasKey(t => t.ControlItemDetailID);
this.ToTable("Sys_ControlItemDetail");
this.Property(t => t.ControlItemDetailID).HasColumnName("ControlItemDetailID");
this.Property(t => t.ControlItemCode).HasColumnName("ControlItemCode").IsRequired().IsUnicode(false).HasMaxLength(30);
this.Property(t => t.MenuNo).HasColumnName("MenuNo").HasMaxLength(30);
this.Property(t => t.ContextMnuNo).HasColumnName("ContextMnuNo").HasMaxLength(30);
this.HasOptional(t => t.Sys_ContextMenu).WithMany(t => t.Sys_ControlItemDetail).HasForeignKey(d => d.ContextMnuNo);
this.HasRequired(t => t.Sys_ControlItem).WithMany(t => t.Sys_ControlItemDetail).HasForeignKey(d => d.ControlItemCode);
this.HasOptional(t => t.Sys_Menu).WithMany(t => t.Sys_ControlItemDetail).HasForeignKey(d => d.MenuNo);
}
}
}