Context değişkeni döndürmeye çalışıyor#1
Open
ercanerdogan wants to merge 1 commit intoCoskunKurtuldu:masterfrom
Open
Context değişkeni döndürmeye çalışıyor#1ercanerdogan wants to merge 1 commit intoCoskunKurtuldu:masterfrom
ercanerdogan wants to merge 1 commit intoCoskunKurtuldu:masterfrom
Conversation
Method içlerinde MusicMarketDbContext olarak kullanıldığı için MusicMarketDbContext döndürmesi gerekirken Context olarak yazım yanlışı kalmış gibi.
Context olarak tanımlamak daha güzel olurdu aslında.
bir diğer alternatif olarak DependencyInjection ile yapabilirmiydik burada ? Aşağıda bir örnek bırakıyorum..
private MusicMarketDbContext _context;
public ArtistRepository(MusicMarketDbContext context)
: base(context)
{
_context = context;
}
public async Task<IEnumerable<Artist>> GetAllWithMusicAsync()
{
return await _context.Artists.Include(a => a.Musics).ToListAsync();
}
public async Task<Artist> GetWithMusicsByIdAsync(int id)
{
return await _context.Artists.Include(a => a.Musics).SingleOrDefaultAsync(a => a.Id == id);
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Method içlerinde MusicMarketDbContext olarak kullanıldığı için MusicMarketDbContext döndürmesi gerekirken Context olarak yazım yanlışı kalmış gibi.
Context olarak tanımlamak daha güzel olurdu aslında.
bir diğer alternatif olarak DependencyInjection ile yapabilirmiydik burada ? Aşağıda bir örnek bırakıyorum..