public void ClearTables() { _context.Artists.RemoveRange(_context.Artists); _context.Genres.RemoveRange(_context.Genres); _context.Albums.RemoveRange(_context.Albums); _context.Songs.RemoveRange(_context.Songs); _context.SaveChanges(); }
public void ClearTable() { _context.Artists.RemoveRange(_context.Artists); _context.SaveChanges(); }
public void ClearTable() { _context.Users.RemoveRange(_context.Users); _context.Songs.RemoveRange(_context.Songs); _context.SaveChanges(); }
public void ClearTable() { _context.Genres.RemoveRange(_context.Genres); _context.SaveChanges(); }