fix field spelling errors
@ -2,7 +2,7 @@
public class DynamicParamter
{
public string Filed { get; set; }
public string Field { get; set; }
public DynamicLogic Logic { get; set; } = DynamicLogic.And;
@ -25,7 +25,7 @@ public static class ObjectQueryableExtensions
Expression exp = null;
Type propertyType = null;
var leftParamter = Expression.PropertyOrField(typeExpression, paramter.Filed);
var leftParamter = Expression.PropertyOrField(typeExpression, paramter.Field);
if (!string.IsNullOrWhiteSpace(paramter.Type))
propertyType = Type.GetType(paramter.Type, true);