ASP.NET Core 8.0 API Project | Infrastructure: DbContext, Generic Repository & Unit of Work #5

Поділитися
Вставка
  • Опубліковано 15 січ 2025

КОМЕНТАРІ • 4

  • @HatsuneM_ALC
    @HatsuneM_ALC 2 дні тому +1

    In the GenericRepository part, you can abstract the _context.Set like this:
    private readonly PrivateContext _context;
    private readonly DbSet _entity;
    public GenericRepository(PrivateContext context)
    {
    _context = context;
    _entity = _context.Set();
    }

    • @ByteVerseHD
      @ByteVerseHD  2 дні тому

      Thanks for sharing, yes it can be done 👍🏻

    • @HatsuneM_ALC
      @HatsuneM_ALC 2 дні тому

      @@ByteVerseHD A question when will this course end?

    • @ByteVerseHD
      @ByteVerseHD  2 дні тому

      This course will be more than 30 videos. I am sharing 2 videos every week .