12345678910111213141516171819202122232425262728293031323334 |
- //------------------------------------------------------------------------------
- // <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 CF_StudentEditColumnDescription_Mapping : EntityTypeConfiguration<CF_StudentEditColumnDescription>
- {
- public CF_StudentEditColumnDescription_Mapping()
- {
- this.HasKey(t => new {t.TableName, t.ColumnName});
- this.ToTable("CF_StudentEditColumnDescription");
- this.Property(t => t.TableName).HasColumnName("TableName").IsRequired().IsUnicode(false).HasMaxLength(255);
- this.Property(t => t.ColumnName).HasColumnName("ColumnName").IsRequired().IsUnicode(false).HasMaxLength(255);
- this.Property(t => t.DisplayPropertyName).HasColumnName("DisplayPropertyName").IsUnicode(false).HasMaxLength(255);
- this.Property(t => t.Description).HasColumnName("Description").HasMaxLength(50);
- }
- }
- }
|