123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- 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 ER_RetakePlanTeachingSetting_Mapping : EntityTypeConfiguration<ER_RetakePlanTeachingSetting>
- {
- public ER_RetakePlanTeachingSetting_Mapping()
- {
- this.HasKey(t => t.RetakePlanID);
- this.ToTable("ER_RetakePlanTeachingSetting");
- this.Property(t => t.RetakePlanID).HasColumnName("RetakePlanID");
- this.Property(t => t.TheoryCourse).HasColumnName("TheoryCourse");
- this.Property(t => t.Practicehours).HasColumnName("Practicehours");
- this.Property(t => t.Trialhours).HasColumnName("Trialhours");
- this.Property(t => t.WeeklyNum).HasColumnName("WeeklyNum");
- this.Property(t => t.TheoryWeeklyNum).HasColumnName("TheoryWeeklyNum");
- this.Property(t => t.PracticeWeeklyNum).HasColumnName("PracticeWeeklyNum");
- this.Property(t => t.TrialWeeklyNum).HasColumnName("TrialWeeklyNum");
- this.Property(t => t.StartWeeklyNum).HasColumnName("StartWeeklyNum");
- this.Property(t => t.EndWeeklyNum).HasColumnName("EndWeeklyNum");
- this.Property(t => t.WeeklyHours).HasColumnName("WeeklyHours");
- this.HasRequired(t => t.ER_RetakePlanSetting).WithOptional(t => t.ER_RetakePlanTeachingSetting);
- }
- }
- }
|