DataGrid CheckBoxList filter should use null instead empty string

This commit is contained in:
Vladimir Enchev
2024-09-30 16:26:01 +03:00
parent e70e3559eb
commit 35c9f55c41

View File

@@ -267,7 +267,7 @@ else
query = query.Take(loadDataArgs.Top.Value);
}
filterValues = query;
filterValues = query.Select("it => it == string.Empty ? null : it");
if (!Column.AllowCheckBoxListVirtualization)
{