1
我有以下代碼可以幫助我通過反射來構建lambda表達式。但是,當我嘗試與Date
進行比較時,它會將我的值轉換爲完整DateTime
印章。我怎樣才能建立我的謂詞,所以它只會比較短日期?使用短日期構建動態lambda謂詞
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);
我知道這是字符串轉換爲DateTime
的Convert.ChangeType
,但我得到的回覆是item => item.DateToCheck == 1/1/2012 12:00:00AM
,當我想item => item.DateToCheck == 1/1/2012
。