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