using System; using Tanshu.Accounts.Entities.Auth; using NHibernate.Mapping.ByCode.Conformist; using NHibernate.Mapping.ByCode; namespace Tanshu.Accounts.Entities { public class Reprint { public virtual Guid ReprintID { get; set; } public virtual User User { get; set; } public virtual DateTime Date { get; set; } public virtual Voucher Voucher { get; set; } } public class ReprintMap : ClassMapping { public ReprintMap() { Table("Reprints"); Schema("dbo"); Lazy(true); Id(x => x.ReprintID, map => map.Generator(Generators.GuidComb)); Property(x => x.Date, map => map.NotNullable(true)); ManyToOne(x => x.User, map => { map.Column("UserID"); map.NotNullable(true); map.Cascade(Cascade.None); }); ManyToOne(x => x.Voucher, map => { map.Column("VoucherID"); map.NotNullable(true); map.Cascade(Cascade.None); }); } } }