|
@@ -232,8 +232,8 @@ public class FilterNode<T> : BaseFilterNode
|
|
|
{
|
|
|
var result = new ConstantNode();
|
|
|
|
|
|
- Dictionary<String, FilterConstant?> values = new Dictionary<string, FilterConstant?>();
|
|
|
- if (!String.IsNullOrWhiteSpace(propertyName))
|
|
|
+ var values = new Dictionary<string, FilterConstant?>();
|
|
|
+ if (!string.IsNullOrWhiteSpace(propertyName))
|
|
|
{
|
|
|
var property = CoreUtils.GetProperty(typeof(T), propertyName);
|
|
|
var constants = FilterConstants.Constants(property.PropertyType, op);
|