diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/VendedorUsuarioMap.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/VendedorUsuarioMap.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/VendedorUsuarioMap.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/VendedorUsuarioMap.cs new file mode 100644 index 0000000..cceda11 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Mappings.Seguros/VendedorUsuarioMap.cs @@ -0,0 +1,21 @@ +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 VendedorUsuarioMap : ClassMap<VendedorUsuarioDb>
+ {
+ public VendedorUsuarioMap()
+ {
+ base.Table("vendedorusuario");
+ base.LazyLoad();
+ base.Id((VendedorUsuarioDb x) => (object)x.Id).GeneratedBy.Identity().Column("idvendedorusuario");
+ base.References<UsuarioDb>((VendedorUsuarioDb x) => x.Usuario).Column("idusuario").Not.Nullable().Fetch.Join();
+ base.References<VendedorDb>((VendedorUsuarioDb x) => x.Vendedor).Column("idvendedor").Not.Nullable().Fetch.Join();
+ }
+ }
+}
\ No newline at end of file |