From ab64c11ea56815940a1e869ecb919b7b2994076d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20P=C3=A9rez=20Ngounou?= Date: Wed, 1 Feb 2023 11:26:50 +0100 Subject: [PATCH] commit --- Sources/DTOs/JoueurDTO.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Sources/DTOs/JoueurDTO.cs b/Sources/DTOs/JoueurDTO.cs index 89f77b8..40243cd 100644 --- a/Sources/DTOs/JoueurDTO.cs +++ b/Sources/DTOs/JoueurDTO.cs @@ -9,8 +9,6 @@ namespace DTOs public class JoueurDTO { #region Properties - [Key] - [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long Id { get; set; } public string Pseudo { get; set; } public ICollection PartieDTO { get; set; } = new List();