This commit is contained in:
2020-12-21 16:01:59 +00:00
parent 7222e4232f
commit 0b86a63417
2 changed files with 197 additions and 1 deletions

View File

@@ -48,6 +48,8 @@ namespace AyaNova.DataList
public string SqlValueColumnName { get; set; }
[JsonIgnore]
public string SqlAyTypeColumnName { get; set; }//column to fetch the AyaType openabel for this field to set it dynamically instead of preset
[JsonIgnore]
public string SqlColorColumnName { get; set; }//column to fetch the color if applicable to this field
@@ -62,7 +64,8 @@ namespace AyaNova.DataList
IsMeta = false;
//Set openable object type to no type which is the default and means it's not a link to another object
AyaObjectType = (int)AyaType.NoType;
SqlAyTypeColumnName=null;//must be null as that is checked against specifically
SqlAyTypeColumnName = null;//must be null as that is checked against specifically
SqlColorColumnName = null;//must be null to be ignored properly
}