4

我试图将AutoQueryNodaTime.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.LocalDatestructenum

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

4

1 回答 1

4

我刚刚添加了将这些行包装在一个新的ChangeTo()扩展方法中,并额外检查以检查IConvertible 此提交中的实现:

public static object ChangeTo(this string strValue, Type type)
{
    if (type.IsValueType && !type.IsEnum
        && type.HasInterface(typeof(IConvertible)))
    {
        try
        {
            return Convert.ChangeType(strValue, type);
        }
        catch (Exception ex)
        {
            Tracer.Instance.WriteError(ex);
        }
    }
    return TypeSerializer.DeserializeFromString(strValue, type);
}

更改了 AutoQuery 以使用它,因此 NodaTime 的 LocalDate 现在应该落入 TypeSerializer。

此更改从 v4.0.57 开始可用,现在可在 MyGet 上使用

于 2016-05-23T18:04:12.787 回答