using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using FluentNHibernate.Mapping; using Sleis.Models.CustomFields; namespace Sleis.Mapping { public class ReleasePointCustomFieldValueMap : ClassMap { public ReleasePointCustomFieldValueMap() { Table("P_REL_PT_CSTM_FLD_VAL"); Id(x => x.Id).Column("REL_PT_CSTM_FLD_VAL_ID"); Map(x => x.EntityId).Column("REL_PT_ID"); Component(x => x.FieldValue); } } }