12345678910111213141516171819202122232425262728293031323334 |
- 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_StudentAccountSource_Mapping : EntityTypeConfiguration<CF_StudentAccountSource>
- {
- public CF_StudentAccountSource_Mapping()
- {
- this.HasKey(t => t.StudentContrastID);
- this.ToTable("CF_StudentAccountSource");
- this.Property(t => t.StudentContrastID).HasColumnName("StudentContrastID");
- this.Property(t => t.CardNo).HasColumnName("CardNo").IsUnicode(false).HasMaxLength(50);
- this.Property(t => t.BankName).HasColumnName("BankName").HasMaxLength(50);
- this.HasRequired(t => t.CF_StudentSource).WithOptional(t => t.CF_StudentAccountSource);
- }
- }
- }
|