Exemplo n.º 1
0
        public async Task <bool> LoadArtistAsync(MusicStoreContext ctx)
        {
            Artist = await ctx.Artists.FirstOrDefaultAsync(art => art.Id == ArtistId);

            return(true);
        }