Model and migration changes

This commit is contained in:
kdeng00
2024-06-20 17:12:10 -04:00
parent 5c913869b4
commit f3eccfd46e
32 changed files with 111 additions and 123 deletions
+1 -4
View File
@@ -48,10 +48,7 @@ public class ArtistController : BaseController
[HttpGet("{id}")]
public IActionResult GetArtist(int id)
{
Artist artist = new Artist
{
ArtistID = id
};
Artist artist = new Artist { Id = id };
var artistContext = new ArtistContext(_connectionString);