This commit is contained in:
Naumann 2020-06-11 09:34:31 +02:00
parent a4b6d41a25
commit e7b3d2d742
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ namespace BuecherwurmAPI.Models
using (var command = _dbConnection.CreateCommand())
{
command.Parameters.Add(new SqliteParameter("@id", id));
command.CommandText = @"DELETE FROM Books WHERE ProductId= @id";
command.CommandText = @"DELETE FROM Products WHERE ProductId= @id";
var dataReader = command.ExecuteReader();
}
}