You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Short summary (3-5 sentences) describing the issue.
We recently upgraded to Microsoft.AspNet.OData v7.7.3 from v7.1.0.
We have a scenario where we manually update a part of @odata.nextLink before returning it.
We fetch the nextLink using Request.ODataProperties().NextLink and make the neccesarry modifications. However, since the upgrade - Request.ODataProperties().NextLink is always returning null even though the final Api response returns the nextLink (just not in our desired format).
Assemblies affected
Microsoft.AspNet.OData v7.7.3
Code sample -
var data = queryOptions.ApplyTo(queryable, odataQuerySettings, this.IgnoredQueryOptions);
var nextLink = queryOptions.Request.ODataProperties().NextLink;
// The above is always null even though all the queryOptions have applied correctly
But the Api response has the next link present -
The text was updated successfully, but these errors were encountered:
Short summary (3-5 sentences) describing the issue.
We recently upgraded to Microsoft.AspNet.OData v7.7.3 from v7.1.0.
We have a scenario where we manually update a part of @odata.nextLink before returning it.
We fetch the nextLink using
Request.ODataProperties().NextLink
and make the neccesarry modifications. However, since the upgrade -Request.ODataProperties().NextLink
is always returningnull
even though the final Api response returns the nextLink (just not in our desired format).Assemblies affected
Microsoft.AspNet.OData v7.7.3
Code sample -
But the Api response has the next link present -
The text was updated successfully, but these errors were encountered: