DateTime 在使用 Refit 序列化并用作 url 参数时失去精度

DateTime loses precision when serialized and used as a url parameter using Refit

我正在构建一个 API 网关,该网关的端点将 DateTime 值作为参数。它使用 Refit 将此查询转发到底层微服务。

我的问题是,当 URL 构建微服务查询时,DateTime 值失去了精度。

有没有办法将 Refit 配置为在构建 URLs 时使用自定义 DateTime 序列化程序?

微服务端点定义如下:

[Get("/client-sales")]
Task<ClientSaleCollectionR12n> SearchClientSales([Header("Authorization")] string authorization,
                                                         DateTime? completedAfter = null,
                                                         DateTime? completedBefore = null);

发送到网关的查询:

GET /client-sales?completedAfter=2020-03-20T14:54:26.786&completedBefore=2020-03-21T15:16:33.212

转发到底层微服务时变成这样:

GET /client-sales?completedAfter=03%2F20%2F2020%2014%3A54%3A26&completedBefore=03%2F21%2F2020%2015%3A16%3A33

我能够在定义接口时指定格式。

Task<ClientSaleCollectionR12n> SearchClientSales([Header("Authorization")] string authorization,
                                                         [Query(Format = "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff'Z'")] DateTime? completedAfter = null,
                                                         [Query(Format = "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff'Z'")] DateTime? completedBefore = null);

由于改装使用 Newtonsoft.Json,也许在改装使用的 JsonConverter 上设置 DateTimeZoneHandling 有效?

https://www.newtonsoft.com/json/help/html/SerializeDateTimeZoneHandling.htm

我遇到这个问题是因为我们有同样的问题,但还没有机会尝试。但如果您不必在所有地方指定格式,这将是一种更通用(/更好)的方法。