git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C363
This commit is contained in:
parent
88dae675be
commit
60fd4d3753
2 changed files with 21 additions and 1 deletions
|
|
@ -29,6 +29,18 @@ namespace AYA.SlnSinortModel.Sinort
|
||||||
|
|
||||||
public bool? Requerido { get; set; }
|
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")]
|
[Column(TypeName = "ntext")]
|
||||||
public string RespuestaPregunta { get; set; }
|
public string RespuestaPregunta { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -623,6 +623,14 @@ namespace AYA.SlnSinortModel.Sinort
|
||||||
.Property(e => e.NombrePregunta)
|
.Property(e => e.NombrePregunta)
|
||||||
.IsUnicode(false);
|
.IsUnicode(false);
|
||||||
|
|
||||||
|
modelBuilder.Entity<DetalleEncuesta>()
|
||||||
|
.Property(e => e.RangoMinimo)
|
||||||
|
.IsUnicode(false);
|
||||||
|
|
||||||
|
modelBuilder.Entity<DetalleEncuesta>()
|
||||||
|
.Property(e => e.RangoMaximo)
|
||||||
|
.IsUnicode(false);
|
||||||
|
|
||||||
modelBuilder.Entity<DetalleEncuesta>()
|
modelBuilder.Entity<DetalleEncuesta>()
|
||||||
.Property(e => e.UsuarioCreacion)
|
.Property(e => e.UsuarioCreacion)
|
||||||
.IsUnicode(false);
|
.IsUnicode(false);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue