John Gathogo
John Gathogo
Duplicate of https://github.com/OData/WebApi/issues/2586 @PaulBujor Thank you for reporting the issue. We already have issue #2586 in our backlog. #2572 fixed a different but related issue.
@aboryczko We can look at improving the error message if we're able to identify this error case. We can also see about making it possible to configure the `HandleNullPropagation` setting...
@gordon-matt I tried this and got the same results as @xuzhg. I'm not sure the regional date and time settings have anything to do with the behaviour you're observing. Here's...
@gordon-matt From your screenshot in [the issue description](https://github.com/OData/AspNetCoreOData/issues/590#issue-1229027990), would you mind sharing the `dateFrom` parameter expanded? Just to be sure which component is which in the date displayed as `{5/7/2022...
argh! Meant from your issue description https://github.com/OData/AspNetCoreOData/issues/590#issue-1229027990 @gordon-matt
@asvaghela Please check that you're enabling Count query option from `Startup` class. Something like this... ```csharp services.AddControllers().AddOData( options => options.Select().Filter().OrderBy().Expand().Count().SetMaxTop(null)); ``` From a quick repro I tried, I get back...
@asvaghela Did you get a chance to try this out?
@davhdavh Please note that TotalCountFunc should be called after applying filter but before applying skip and top. If you're observing a different behaviour please let us know so we can...
@davhdavh Could you please clarify this statement "_it does not see if a property is navigatable and check properties for there and build a proper path_"?
@josundt We currently don't use NewtonSoft.Json for serialization/deserialization. We read and write the Json directly to the wire to take advantage of some important optimizations. We're adding support for reading/writing...