File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
samples/EntityFramework/Tracker.Core
src/Foundatio.CommandQuery.Endpoints Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9- <PackageReference Include =" MicroSoft .EntityFrameworkCore.SqlServer" Version =" 9.0.9" />
9+ <PackageReference Include =" Microsoft .EntityFrameworkCore.SqlServer" Version =" 9.0.9" />
1010 <PackageReference Include =" Microsoft.Extensions.Diagnostics.HealthChecks" Version =" 9.0.9" />
1111 <PackageReference Include =" Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version =" 9.0.9" />
1212 </ItemGroup >
Original file line number Diff line number Diff line change @@ -80,17 +80,17 @@ protected override void MapGroup(RouteGroupBuilder group)
8080 . ProducesValidationProblem ( )
8181 . WithTags ( EntityName )
8282 . WithName ( $ "Update{ EntityName } ")
83- . WithSummary ( "Update entity" )
84- . WithDescription ( "Update entity" ) ;
83+ . WithSummary ( "Update an existing entity" )
84+ . WithDescription ( "Update an existing entity" ) ;
8585
8686 group
8787 . MapDelete ( "{id}" , DeleteCommand )
8888 . ProducesProblem ( StatusCodes . Status500InternalServerError )
8989 . ProducesValidationProblem ( )
9090 . WithTags ( EntityName )
9191 . WithName ( $ "Delete{ EntityName } ")
92- . WithSummary ( "Delete entity" )
93- . WithDescription ( "Delete entity" ) ;
92+ . WithSummary ( "Delete an existing entity" )
93+ . WithDescription ( "Delete an existing entity" ) ;
9494 }
9595
9696 /// <summary>
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ protected virtual void MapGroup(RouteGroupBuilder group)
8080 . ProducesProblem ( StatusCodes . Status500InternalServerError )
8181 . ProducesValidationProblem ( )
8282 . WithTags ( EntityName )
83- . WithName ( $ "Query { EntityName } ")
83+ . WithName ( $ "GetQuery { EntityName } ")
8484 . WithSummary ( "Get entities by query" )
8585 . WithDescription ( "Get entities by query" ) ;
8686
@@ -89,7 +89,7 @@ protected virtual void MapGroup(RouteGroupBuilder group)
8989 . ProducesProblem ( StatusCodes . Status500InternalServerError )
9090 . ProducesValidationProblem ( )
9191 . WithTags ( EntityName )
92- . WithName ( $ "Query { EntityName } ")
92+ . WithName ( $ "PostQuery { EntityName } ")
9393 . WithSummary ( "Get entities by query" )
9494 . WithDescription ( "Get entities by query" ) ;
9595 }
You can’t perform that action at this time.
0 commit comments