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
We recently added several flags to deal with middleware pipeline ordering issues in NetCore3. A better approach would be to move the inverse relationship building logic into the configuration phase.
And then only call:
app.UseMiddleware<JsonApiMiddleware>();// old name: CurrentRequestMiddleware
from within this method. This allows callers to order/omit steps as they like, without sending us flags. Requires updates to documentation too.
We recently added several flags to deal with middleware pipeline ordering issues in NetCore3. A better approach would be to move the inverse relationship building logic into the configuration phase.
And then only call:
from within this method. This allows callers to order/omit steps as they like, without sending us flags. Requires updates to documentation too.
Before:
After:
The text was updated successfully, but these errors were encountered: