Exemple #1
0
 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();
 }
Exemple #3
0
 public void ClearTable()
 {
     _context.Users.RemoveRange(_context.Users);
     _context.Songs.RemoveRange(_context.Songs);
     _context.SaveChanges();
 }
Exemple #4
0
 public void ClearTable()
 {
     _context.Genres.RemoveRange(_context.Genres);
     _context.SaveChanges();
 }