59 Commits

Author SHA1 Message Date
601aff07c1 Add reference to Domain for the Data project.
Note that this command, did not work in Ubuntu. I just added the html to the project file myself.

dotnet reference add

https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-reference-add
2025-04-04 16:25:46 +02:00
7bbe486bea Add Data and Domain projects to solution.
dotnet sln add EntityFrameworkCore.Data/EntityFrameworkCore.Data.csproj
dotnet sln add EntityFrameworkCore.Domain/EntityFrameworkCore.Domain.csproj
2025-04-04 16:09:04 +02:00
c8b1f5c391 Create a clean solution and move all files.
dotnet new sln -n deadballzone
2025-04-04 16:06:58 +02:00
3db3e262e1 Install Entity Framework Core NuGet package in Data project instead of solution.
dotnet remove package Microsoft.EntityFrameworkCore
cd EntityFrameworkCore.Data/
dotnet add package Microsoft.EntityFrameworkCore --version 9.0.3
2025-04-04 15:57:34 +02:00
28e6e98e93 Install NuGet package Entity Framework Core 9.0.3 version in solution. 2025-04-04 15:54:56 +02:00
3fae448287 Add initial README. 2025-04-04 15:54:24 +02:00
5e688a24d5 Add models for BaseDomainModel, Coach and Team. 2025-04-04 15:41:45 +02:00
62ae17f271 Create empty class libraries Data and Domain and add to solution.
dotnet new web
dotnet new classlib -o EntityFrameworkCore.Data
dotnet new classlib -o EntityFrameworkCore.Domain
dotnet sln add EntityFrameworkCore.Data/EntityFrameworkCore.Data.csproj
dotnet sln add EntityFrameworkCore.Domain/EntityFrameworkCore.Domain.csproj
2025-04-04 14:47:31 +02:00
e7e31f7f54 Initial commit with empty project. 2025-04-04 14:23:47 +02:00