using NFine.Domain.Entity.SystemManage;using System.Data.Entity.ModelConfiguration; namespace NFine.Mapping.SystemManage{ public class ItemsMap : EntityTypeConfiguration<ItemsEntity> { public ItemsMap() { this.ToTable("Sys_SRM_Items"); this.HasKey(t => t.F_Id); } }}
using NFine.Domain.Entity.SystemManage;
using System.Data.Entity.ModelConfiguration;
namespace NFine.Mapping.SystemManage
{
public class ItemsMap : EntityTypeConfiguration<ItemsEntity>
public ItemsMap()
this.ToTable("Sys_SRM_Items");
this.HasKey(t => t.F_Id);
}