4

クエリ パラメーターで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)

なぜならis aであり、not anを使用する次のコード行まで追跡しました。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 にフォールスルーするようにしました。

この変更は、 MyGet で利用できるようになった v4.0.57から利用できます。

于 2016-05-23T18:04:12.787 に答える