This commit is contained in:
jnunez 2018-07-31 21:30:51 +00:00
parent 88dae675be
commit 60fd4d3753
2 changed files with 21 additions and 1 deletions

View file

@ -29,6 +29,18 @@ namespace AYA.SlnSinortModel.Sinort
public bool? Requerido { get; set; }
[Column(TypeName = "ntext")]
public string Columnas { get; set; }
[Column(TypeName = "ntext")]
public string Filas { get; set; }
[StringLength(200)]
public string RangoMinimo { get; set; }
[StringLength(200)]
public string RangoMaximo { get; set; }
[Column(TypeName = "ntext")]
public string RespuestaPregunta { get; set; }

View file

@ -8,7 +8,7 @@ namespace AYA.SlnSinortModel.Sinort
public partial class SinortContex : Contex
{
public virtual DbSet<Aplicacion> Aplicacion { get; set; }
public virtual DbSet<AreaAplicacionDocumentoTecnico> AreaAplicacionDocumentoTecnico { get; set; }
@ -623,6 +623,14 @@ namespace AYA.SlnSinortModel.Sinort
.Property(e => e.NombrePregunta)
.IsUnicode(false);
modelBuilder.Entity<DetalleEncuesta>()
.Property(e => e.RangoMinimo)
.IsUnicode(false);
modelBuilder.Entity<DetalleEncuesta>()
.Property(e => e.RangoMaximo)
.IsUnicode(false);
modelBuilder.Entity<DetalleEncuesta>()
.Property(e => e.UsuarioCreacion)
.IsUnicode(false);