12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //------------------------------------------------------------------------------
- // <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 CourseworkResult_Mapping : EntityTypeConfiguration<CourseworkResult>
- {
- public CourseworkResult_Mapping()
- {
- this.HasKey(t => t.ID);
- this.ToTable("CourseworkResult");
- this.Property(t => t.ID).HasColumnName("ID").HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
- this.Property(t => t.user_id).HasColumnName("user_id").IsUnicode(false).HasMaxLength(40);
- this.Property(t => t.test_paper_id).HasColumnName("test_paper_id");
- this.Property(t => t.test_begin_date).HasColumnName("test_begin_date");
- this.Property(t => t.test_end_date).HasColumnName("test_end_date");
- this.Property(t => t.limited_minutes).HasColumnName("limited_minutes");
- this.Property(t => t.workid).HasColumnName("workid");
- this.Property(t => t.ExaminationPaperID).HasColumnName("ExaminationPaperID");
- this.Property(t => t.username).HasColumnName("username").IsUnicode(false).HasMaxLength(40);
- this.Property(t => t.score).HasColumnName("score");
- this.Property(t => t.is_auto_read).HasColumnName("is_auto_read");
- this.Property(t => t.state).HasColumnName("state");
- this.Property(t => t.warning_count).HasColumnName("warning_count");
- this.Property(t => t.lastLoginTime).HasColumnName("lastLoginTime");
- this.HasOptional(t => t.Coursework).WithMany(t => t.CourseworkResult).HasForeignKey(d => d.workid);
- this.HasOptional(t => t.test_paper).WithMany(t => t.CourseworkResult).HasForeignKey(d => d.test_paper_id);
- }
- }
- }
|