using System; using System.Collections.Generic; using System.Linq; using System.Web; using Sleis.Models; using FluentNHibernate.Mapping; namespace Sleis.Mapping { public class SimpleLookupItemMap: ClassMap { public SimpleLookupItemMap() { ReadOnly(); Id(x => x.Code).Column("CODE"); Map(x => x.Code).Column("CODE"); Map(x => x.Value).Column("VALUE"); Map(x => x.Year).Column("LAST_INV_YEAR"); } } }