2012-11-15 58 views
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); 

我知道這是字符串轉換爲DateTimeConvert.ChangeType,但我得到的回覆是item => item.DateToCheck == 1/1/2012 12:00:00AM,當我想item => item.DateToCheck == 1/1/2012

回答

3

你想通過Convert.ChangeType(...)第三個參數,已經存在的IFormatProvider這個確切目的:DateTimeFormatInfo