using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using PARR.DAL.Context; using PARR.DAL.Repositories.Base; using PARR.DAL.Services.Interfaces.Unit; namespace PARR.DAL.Services.Implementations.Unit { internal class UnitService : BaseRepository, IUnitService { public UnitService(DataContext dataContext, ILogger logger) : base(logger, dataContext) { } public IQueryable GetWithIncludes() { return Get() .Include(t => t.UnitValues) .ThenInclude(t => t.Field) .Include(t => t.UnitValues) .ThenInclude(t => t.Value); } } }