Files
PF3-fork/PyroFetes/Endpoints/Truck/DeleteTruckEndpoint.cs
T
cernont b3612f5bec Remove /api prefix from all routes and fix CityId FK constraint
- Strip /api prefix from all endpoint routes
- Make Show.CityId nullable (no longer required FK)
- Drop CityId FK constraint and alter column to NULL at startup via raw SQL
- Add migration MakeCityIdNullable for schema consistency
- Update Show DTOs to reflect nullable CityId

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-27 20:32:55 +02:00

46 lines
1.2 KiB
C#

using FastEndpoints;
using Microsoft.EntityFrameworkCore;
using PyroFetes.DTO.Truck.Request;
namespace PyroFetes.Endpoints.Truck;
public class DeleteTruckEndpoint(PyroFetesDbContext pyroFetesDbContext) : Endpoint<IdTruckDto>
{
public override void Configure()
{
Delete("/trucks/{Id}");
AllowAnonymous();
}
public override async Task HandleAsync(IdTruckDto req, CancellationToken ct)
{
if (!req.Id.HasValue)
{
await Send.NotFoundAsync(ct);
return;
}
var truck = await pyroFetesDbContext.Trucks
.Include(t => t.ShowTrucks)
.FirstOrDefaultAsync(t => t.Id == req.Id.Value, ct);
if (truck is null)
{
await Send.NotFoundAsync(ct);
return;
}
// Supprimer les relations ShowTruck associées
if (truck.ShowTrucks != null && truck.ShowTrucks.Any())
{
pyroFetesDbContext.ShowTrucks.RemoveRange(truck.ShowTrucks);
}
// Supprimer le truck
pyroFetesDbContext.Trucks.Remove(truck);
await pyroFetesDbContext.SaveChangesAsync(ct);
await Send.OkAsync(ct);
}
}