This commit is contained in:
2020-02-20 22:35:22 +00:00
parent 605dafb15b
commit faa263a960
4 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
// {
// public static class DataListFilterSpecialToken
// {
// public const string Null = "{[null]}";
// public const string Null = "*NULL*";
// public const string Yesterday = "{[yesterday]}";
// public const string Today = "{[today]}";
// public const string Tomorrow = "{[tomorrow]}";

View File

@@ -168,7 +168,7 @@ namespace AyaNova.DataList
sb.Append(" ");
//handle null values separately
if (!TagFilter && sValue == "{[null]}")
if (!TagFilter && sValue == "*NULL*")
{
switch (DataType)
{