We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095f532 commit b307885Copy full SHA for b307885
test/Cnblogs.Architecture.IntegrationTestProject/Program.cs
@@ -43,7 +43,7 @@
43
enableHead: true);
44
v1.MapQuery(
45
"strings/{stringId:int}",
46
- async (int stringId, [FromQuery] bool found)
+ async (int stringId, [FromQuery] bool found = true)
47
=> await Task.FromResult(new GetStringQuery(StringId: stringId, Found: found)));
48
v1.MapQuery<ListStringsQuery>("strings");
49
v1.MapCommand(
0 commit comments