This commit is contained in:
2020-01-20 19:43:13 +00:00
parent 24a897e811
commit aeee5a92b1
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ namespace AyaNova.Biz
{ {
public object v { get; set; } public object v { get; set; }
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)] //https://www.newtonsoft.com/json/help/html/JsonPropertyPropertyLevelSetting.htm [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] //https://www.newtonsoft.com/json/help/html/JsonPropertyPropertyLevelSetting.htm
public long? Id { get; set; } public long? i { get; set; }
} }
} }

View File

@@ -500,7 +500,7 @@ namespace AyaNova.Biz
nCurrentColumnPointer++; nCurrentColumnPointer++;
if (!isFirstDFColumn && f.SqlIdColumnName != null)//skip over df column id, it's not there if (!isFirstDFColumn && f.SqlIdColumnName != null)//skip over df column id, it's not there
{ {
AyaField.Id = dr.GetInt64(nCurrentColumnPointer); AyaField.i = dr.GetInt64(nCurrentColumnPointer);
nCurrentColumnPointer++; nCurrentColumnPointer++;
} }