From 4e0b2690032811528f77ad61b667d03d900cac77 Mon Sep 17 00:00:00 2001 From: Frank Date: Mon, 10 Nov 2025 10:51:52 +0100 Subject: [PATCH] fix: get author by id query --- src/team4.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/team4.cs b/src/team4.cs index a08c679..299a9bc 100644 --- a/src/team4.cs +++ b/src/team4.cs @@ -223,7 +223,7 @@ namespace Team4 using (var command = conn.CreateCommand()) { command.CommandText = @" - SELECT author.ID + SELECT * FROM Authors author WHERE author.ID = @aid;"; command.Parameters.AddWithValue("@aid", authorID);