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
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Bugs are tracked as [GitHub issues](https://github.com/json-api-dotnet/JsonApiDo
22
22
Explain the problem and include additional details to help maintainers reproduce the problem:
23
23
24
24
-**Use a clear and descriptive title** for the issue to identify the problem.
25
-
-**Describe the exact steps which reproduce the problem** in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
25
+
-**Describe the exact steps which reproduce the problem** in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
26
26
-**Provide specific examples to demonstrate the steps.** Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use [Markdown code blocks](https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks).
27
27
-**Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior. Explain which behavior you expected to see instead and why.
28
28
-**If you're reporting a crash**, include the full exception stack trace.
Copy file name to clipboardExpand all lines: docs/usage/extensibility/middleware.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
The default middleware validates incoming `Content-Type` and `Accept` HTTP headers.
4
4
Based on routing configuration, it fills `IJsonApiRequest`, an injectable object that contains JSON:API-related information about the request being processed.
5
5
6
-
It is possible to replace the built-in middleware components by configuring the IoC container and by configuring `MvcOptions`.
6
+
It is possible to replace the built-in middleware components by configuring the IoC container and by configuring `MvcOptions`.
7
7
8
-
## Configuring the IoC container
8
+
## Configuring the IoC container
9
9
10
10
The following example replaces the internal exception filter with a custom implementation.
@@ -220,7 +220,7 @@ You can define additional query string parameters with the LINQ expression that
220
220
If the key is present in a query string, the supplied LINQ expression will be added to the database query.
221
221
222
222
> [!NOTE]
223
-
> This directly influences the Entity Framework Core `IQueryable`. As opposed to using `OnApplyFilter`, this enables the full range of Entity Framework Core operators.
223
+
> This directly influences the Entity Framework Core `IQueryable`. As opposed to using `OnApplyFilter`, this enables the full range of Entity Framework Core operators.
224
224
But it only works on primary resource endpoints (for example: /articles, but not on /blogs/1/articles or /blogs?include=articles).
0 commit comments