//------------------------------------------------------------------------------ // // 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 EMISOnline.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 MSsavedforeignkeyextendedproperties_Mapping : EntityTypeConfiguration { public MSsavedforeignkeyextendedproperties_Mapping() { this.HasKey(t => new {t.program_name, t.constraint_name, t.parent_schema, t.property_name, t.timestamp}); this.ToTable("MSsavedforeignkeyextendedproperties", "EMISOnlineContextStoreContainer"); this.Property(t => t.program_name).HasColumnName("program_name").IsRequired().HasMaxLength(128); this.Property(t => t.constraint_name).HasColumnName("constraint_name").IsRequired().HasMaxLength(128); this.Property(t => t.parent_schema).HasColumnName("parent_schema").IsRequired().HasMaxLength(128); this.Property(t => t.property_name).HasColumnName("property_name").IsRequired().HasMaxLength(128); this.Property(t => t.timestamp).HasColumnName("timestamp"); } } }