30 lines
846 B
C#
30 lines
846 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.ModelConfiguration;
|
|
|
|
namespace IntegrationTests.Models.Mapping
|
|
{
|
|
public class GLAccountMap : EntityTypeConfiguration<GLAccount>
|
|
{
|
|
public GLAccountMap()
|
|
{
|
|
// Primary Key
|
|
this.HasKey(t => t.Id);
|
|
|
|
// Properties
|
|
this.Property(t => t.GLNumber)
|
|
.IsRequired()
|
|
.HasMaxLength(40);
|
|
|
|
this.Property(t => t.Name)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
// Table & Column Mappings
|
|
this.ToTable("GLAccount");
|
|
this.Property(t => t.Id).HasColumnName("Id");
|
|
this.Property(t => t.GLNumber).HasColumnName("GLNumber");
|
|
this.Property(t => t.Name).HasColumnName("Name");
|
|
}
|
|
}
|
|
}
|