Ejemplo n.º 1
0
 public void GetAllSongs()
 {
     using (var context = new MusicAppDb())
     {
         context.Songs.ToList().Select(x => SongDTO.FromEntity(x)).ToList().ForEach(x => Console.WriteLine(x.NameAndDuration));
     }
 }
Ejemplo n.º 2
0
 public void GetAllPersons(int authorId)
 {
     using (var context = new MusicAppDb())
     {
         context.Authors.ToList().Select(x => AuthorDTO.FromEntity(x)).ToList().ForEach(x => Console.WriteLine(x.FullName));
     }
 }