AI Unified Process plugin for C# and Blazor on .NET 10
88
87%
Does it follow best practices?
Impact
93%
0.95xAverage score across 3 eval scenarios
Passed
No findings from the security scan
The ShopCatalog team is preparing UC-020 "Place Order". The entity model at docs/entity_model.md
has been extended with two new entities, Customer and Order, alongside the existing Product.
The project is a .NET 10 Blazor application using EF Core with PostgreSQL. The Product entity is
already mapped (Domain/Product.cs, Data/ProductConfiguration.cs) and registered in
Data/AppDbContext.cs.
Bring the EF Core model in line with docs/entity_model.md:
Customer and Order under Domain/, honoring every data type,
length/precision, default, and relationship in the entity model.Data/, and whatever AppDbContext changes
are needed so the new entities are part of the model.Do not create any test files, and do not put database credentials anywhere in source code.