12345678910111213141516171819202122232425262728293031323334353637 |
- 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 test_question_file_Mapping : EntityTypeConfiguration<test_question_file>
- {
- public test_question_file_Mapping()
- {
- this.HasKey(t => t.file_id);
- this.ToTable("test_question_file");
- this.Property(t => t.file_id).HasColumnName("file_id").HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
- this.Property(t => t.url).HasColumnName("url").IsUnicode(false).HasMaxLength(1000);
- this.Property(t => t.width).HasColumnName("width");
- this.Property(t => t.height).HasColumnName("height");
- this.Property(t => t.note).HasColumnName("note").IsUnicode(false).HasMaxLength(1000);
- this.Property(t => t.created_by).HasColumnName("created_by").IsUnicode(false).HasMaxLength(50);
- this.Property(t => t.created_date).HasColumnName("created_date");
- }
- }
- }
|