构建具有短日期的动态 lambda 谓词



我有以下代码可以帮助我通过反射构建 lambda 表达式。但是,当我尝试与Date进行比较时,它会将我的价值转换为完整的DateTime邮票。我怎样才能让它构建我的谓词,以便它只比较短期日期?

System.Reflection.PropertyInfo propInfo = typeof(T).GetProperty(property);
Type propertyType = propInfo.PropertyType;
if (Utilities.IsNullableType(propertyType))
{
    propertyType = Nullable.GetUnderlyingType(propertyType);
}
ParameterExpression propAlias = Expression.Parameter(typeof(T), alias);
MemberExpression left = Expression.Property(propAlias, property);
ConstantExpression right = Expression.Constant(Convert.ChangeType(value, propertyType));
BinaryExpression comparer = BuildComparisonExpression(left, right, comparison);
return Expression.Lambda<Func<T, bool>>(comparer, propAlias);

我知道是Convert.ChangeType将字符串转换为DateTime,但是当我想要item => item.DateToCheck == 1/1/2012时,我得到的是item => item.DateToCheck == 1/1/2012 12:00:00AM

你想传递第三个参数Convert.ChangeType(...),即为此目的而存在的IFormatProviderDateTimeFormatInfo

相关内容

  • 没有找到相关文章

最新更新