blob: 4252897fca033ad47dd3bf89b9e140079e61dd00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using FluentNHibernate.Mapping;
using Gestor.Infrastructure.Entities.Generic;
using Gestor.Infrastructure.Entities.Seguros;
using System;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
namespace Gestor.Infrastructure.Mappings.Seguros
{
public class CoberturaMap : ClassMap<CoberturaDb>
{
public CoberturaMap()
{
base.Table("cobertura");
base.LazyLoad();
base.Id((CoberturaDb x) => (object)x.Id).GeneratedBy.Identity().Column("idcobertura");
base.References<ItemDb>((CoberturaDb x) => x.Item).Column("iditem").Not.Nullable().Fetch.Join();
base.References<CoberturaPadraoDb>((CoberturaDb x) => x.CoberturaPadrao).Column("idcoberturapadrao").NotFound.Ignore().Fetch.Join();
base.Map((CoberturaDb x) => (object)x.Franquia).Column("franquia");
base.Map((CoberturaDb x) => (object)x.Premio).Column("premio");
base.Map((CoberturaDb x) => (object)x.Lmi).Column("lmi");
base.Map((CoberturaDb x) => x.Observacao).Column("observacao").CustomType("StringClob").CustomSqlType("varchar(MAX)");
}
}
}
|