Skip to content

Commit 266e100

Browse files
committed
bug fixes
1 parent 0675e16 commit 266e100

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

samples/EntityFramework/Tracker.Core/Tracker.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>

src/Foundatio.CommandQuery.Endpoints/EntityCommandEndpointBase.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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>

src/Foundatio.CommandQuery.Endpoints/EntityQueryEndpointBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)