Fix configurazione modelli

This commit is contained in:
Samuele Locatelli
2021-05-31 17:34:06 +02:00
parent 6159a27b9f
commit c40b45aed2
7 changed files with 35 additions and 35 deletions
+5 -5
View File
@@ -15,16 +15,16 @@ namespace GWMS.Data.DatabaseModels
{
#region Public Properties
[Key, Column("Key", Order = 0), MaxLength(50)]
public string Key { get; set; }
[Key, Column(Order = 0), MaxLength(50)]
public string KeyName { get; set; }
[Column("Note", Order = 3)]
[Column(Order = 3), MaxLength(250)]
public string Note { get; set; } = "";
[Column("Val", Order = 1)]
[Column(Order = 1), MaxLength(50)]
public string Val { get; set; } = "";
[Column("ValStd", Order = 2)]
[Column(Order = 2), MaxLength(50)]
public string ValStd { get; set; } = "";
#endregion Public Properties