Artur Drobinskiy
Artur Drobinskiy
In `Client.RequestBody.liquid` theres a special handling for `IsDateOrDateTime`, but `DateOnly` has to be handled using `formatDate`. ``` {%- elsif parameter.IsDateOrDateTime -%} content_ += encodeURIComponent("{{ parameter.Name }}") + "=" + encodeURIComponent({{...
Currently if backend method contains a DateOnly query parameter, the generated code looks like that: ``` if (pickupDate !== undefined && pickupDate !== null) url_ += 'PickupDate=' + encodeURIComponent(pickupDate ?...
I'm using NeinLinq `Dynamic query filtering / sorting` with MongoDB. Everything's ok for strings/ints/etc, but there are issues if I try to filter by properties of `BsonValue` type: ``` System.ArgumentException...