Added Aspire
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
namespace Lutra.Infrastructure
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
17
Lutra/Lutra.Infrastructure/Lutra.Infrastructure.Sql.csproj
Normal file
17
Lutra/Lutra.Infrastructure/Lutra.Infrastructure.Sql.csproj
Normal file
@@ -0,0 +1,17 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lutra.Application\Lutra.Application.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -1,9 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
20
Lutra/Lutra.Infrastructure/LutraDbContext.cs
Normal file
20
Lutra/Lutra.Infrastructure/LutraDbContext.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Lutra.Application.Interfaces;
|
||||
using Lutra.Domain.Entities;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Lutra.Infrastructure.Sql;
|
||||
|
||||
public class LutraDbContext : ILutraDbContext
|
||||
{
|
||||
public DbSet<Supermarkt> Supermarkten => throw new NotImplementedException();
|
||||
|
||||
public DbSet<Verspakket> Verspaketten => throw new NotImplementedException();
|
||||
|
||||
public Task<int> SaveChangesAsync(CancellationToken cancellationToken)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user