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 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 MSsnapshotdeliveryprogress_Mapping : EntityTypeConfiguration<MSsnapshotdeliveryprogress>
- {
- public MSsnapshotdeliveryprogress_Mapping()
- {
- this.HasKey(t => new {t.session_token, t.progress_token_hash, t.progress_token});
- this.ToTable("MSsnapshotdeliveryprogress", "EMISOnlineContextStoreContainer");
- this.Property(t => t.session_token).HasColumnName("session_token").IsRequired().HasMaxLength(260);
- this.Property(t => t.progress_token_hash).HasColumnName("progress_token_hash").HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);
- this.Property(t => t.progress_token).HasColumnName("progress_token").IsRequired().HasMaxLength(500);
- this.Property(t => t.progress_timestamp).HasColumnName("progress_timestamp");
- }
- }
- }
|