我试图将AutoQuery与NodaTime.LocalDate
查询参数一起使用,当我尝试使用该日期字段进行过滤时出现以下异常,特别>MyDate=2020-01-01
是(排序不受影响):
[MyEndpoint: 5/23/2016 4:19:51 PM]: [REQUEST: {}] System.InvalidCastException: Invalid cast from 'System.String' to 'NodaTime.LocalDate'. at System.Convert.DefaultToType(IConvertible value, Type targetType, IFormatProvider provider) at ServiceStack.TypedQuery`2.AppendUntypedQueries(SqlExpression`1 q, Dictionary`2 dynamicParams, String defaultTerm, IAutoQueryOptions options, Dictionary`2 aliases) at ServiceStack.TypedQuery`2.CreateQuery(IDbConnection db, IQueryDb dto, Dictionary`2 dynamicParams, IAutoQueryOptions options) at ServiceStack.AutoQuery.CreateQuery[From](IQueryDb`1 dto, Dictionary`2 dynamicParams, IRequest req) at ServiceStack.AutoQueryServiceBase.Exec[From](IQueryDb`1 dto) at ServiceStack.Host.ServiceRunner`1.Execute(IRequest request, Object instance, TRequest requestDto)
我将其追踪到使用because is a而不是a 的这行代码:Convert.ChangeType(...)
NodaTime.LocalDate
struct
enum
var value = strValue == null ?
null
: isMultiple ?
TypeSerializer.DeserializeFromString(strValue, Array.CreateInstance(fieldType, 0).GetType())
: fieldType == typeof(string) ?
strValue
: fieldType.IsValueType && !fieldType.IsEnum ? //This is true for NodaTime.LocalDate
Convert.ChangeType(strValue, fieldType) : //NodaTime.LocalDate does not implement IConvertible, so this throws
TypeSerializer.DeserializeFromString(strValue, fieldType);
我正在使用我的NodaTime ServiceStack序列化库,所以TypeSerializer.DeserializeFromString(strValue, fieldType)
在这种情况下,我真正想要的行为是。
我看到的解决方法是:
- 在查询字符串中使用
MyDateDateBetween=2020-01-01,9999-12-31
,因为该代码路径使用我指定的自定义序列化(繁琐) - 使用
DateTime
代替NodaTime.LocalDate
(我想使用NodaTime.LocalDate
) - 不使用 AutoQuery(我想)
NodaTime.LocalDate
实现IConvertible
(不太可能)
是否有另一种方法可以让自动查询过滤器与未实现的值类型一起使用IConvertible
?