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
Using Visual Studio to scaffold API with read/write endpoints, using Entity Framework creates incorrect code if the model class has a primary key not named with Id, but with {class}Id (this is a convention with EF Core to create primary keys).
bookid was correctly found with the generated code. However, with the route, incorrectly, id is used. Here I would expect bookid to match it with the parameter, or id with the parameter.
The same issue is with the MapPut and MapDelete methods.
Using Visual Studio to scaffold API with read/write endpoints, using Entity Framework creates incorrect code if the model class has a primary key not named with Id, but with {class}Id (this is a convention with EF Core to create primary keys).
Using this class:
Selecting these options with scaffolding:
Creates this code:
bookid
was correctly found with the generated code. However, with the route, incorrectly,id
is used. Here I would expectbookid
to match it with the parameter, orid
with the parameter.The same issue is with the
MapPut
andMapDelete
methods.See this repo with the generated code:
https://github.com/christiannagel/issues-scaffoldingapi/tree/main/PrimaryKey
Versions:
Visual Studio 17.8.0 Preview 6
.NET 8.0.100-rc2.23502.2
The text was updated successfully, but these errors were encountered: