//------------------------------------------------------------------------------
//
// 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 test_keyword_Mapping : EntityTypeConfiguration
{
public test_keyword_Mapping()
{
this.HasKey(t => t.test_keyword_id);
this.ToTable("test_keyword");
this.Property(t => t.test_keyword_id).HasColumnName("test_keyword_id").HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
this.Property(t => t.name).HasColumnName("name").IsUnicode(false).HasMaxLength(300);
this.Property(t => t.other_vaild_values).HasColumnName("other_vaild_values").IsUnicode(false).HasMaxLength(3000);
}
}
}