From 278064b19b4d670ab1edb42a3e9e4ef978c8a75b Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Sun, 6 Apr 2025 20:10:36 +0200 Subject: [PATCH] Remove Team ID from Team model. This is done to create a proper change to let Id now be the Primary Key. --- EntityFrameworkCore.Domain/Team.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/EntityFrameworkCore.Domain/Team.cs b/EntityFrameworkCore.Domain/Team.cs index 375adb2..f8aec7e 100644 --- a/EntityFrameworkCore.Domain/Team.cs +++ b/EntityFrameworkCore.Domain/Team.cs @@ -3,7 +3,6 @@ public class Team : BaseDomainModel { public string? Name { get; set; } - public int? TeamId { get; set; } public int LeagueId { get; set; } public int CoachId { get; set; } }