This commit is contained in:
moarten
2026-03-21 21:36:12 +01:00
parent ac66d89e6e
commit c5e1dedf1d
7 changed files with 6 additions and 10 deletions

View File

@@ -10,7 +10,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Cortex.Mediator" Version="3.1.2" /> <PackageReference Include="Cortex.Mediator" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.3" /> <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" /> <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
</ItemGroup> </ItemGroup>

View File

@@ -11,7 +11,6 @@ namespace Lutra.API
var builder = WebApplication.CreateBuilder(args); var builder = WebApplication.CreateBuilder(args);
builder.Services.AddCortexMediator( builder.Services.AddCortexMediator(
configuration: builder.Configuration,
handlerAssemblyMarkerTypes: [typeof(Program), typeof(GetVerspakketten)], handlerAssemblyMarkerTypes: [typeof(Program), typeof(GetVerspakketten)],
options => options.AddDefaultBehaviors() options => options.AddDefaultBehaviors()
); );

View File

@@ -11,8 +11,8 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.1.1" /> <PackageReference Include="Aspire.Hosting.AppHost" Version="13.1.3" />
<PackageReference Include="Aspire.Hosting.SqlServer" Version="13.1.1" /> <PackageReference Include="Aspire.Hosting.SqlServer" Version="13.1.3" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -8,7 +8,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Cortex.Mediator" Version="3.1.2" /> <PackageReference Include="Cortex.Mediator" Version="3.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.3" /> <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -6,6 +6,6 @@ namespace Lutra.Application.Models.Verspakketten
{ {
public required string Name { get; init; } public required string Name { get; init; }
public required string Rating { get; init; } public required string Rating { get; init; }
public Supermarkt Supermarkt { get; init; } public Supermarkt? Supermarkt { get; init; }
} }
} }

View File

@@ -7,7 +7,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.3" /> <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -1,9 +1,6 @@
using Lutra.Application.Interfaces; using Lutra.Application.Interfaces;
using Lutra.Domain.Entities; using Lutra.Domain.Entities;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Text;
namespace Lutra.Infrastructure.Sql; namespace Lutra.Infrastructure.Sql;