From 2915af3f043f6b45415e017432b57079115fdc98 Mon Sep 17 00:00:00 2001 From: Mikhail Kuznetsov Date: Wed, 26 Jun 2024 11:48:19 +1000 Subject: [PATCH] =?UTF-8?q?fix(aihitSyncer):=20=D0=BF=D1=80=D0=B8=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=BB=D1=83=D1=87=D0=B5=D0=BD=D0=B8=D0=B8=20Host=20?= =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20include=20?= =?UTF-8?q?=D1=80=D0=B0=D0=B1=D0=BE=D1=87=D0=B5=D0=B9=20=D0=B3=D1=80=D1=83?= =?UTF-8?q?=D0=BF=D0=BF=D1=8B,=20=D0=B2=D0=BE=20=D0=B2=D1=80=D0=B5=D0=BC?= =?UTF-8?q?=D1=8F=20=D1=81=D1=80=D0=B0=D0=B2=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= =?UTF-8?q?=20=D0=BF=D0=BE=D0=BB=D1=8F=20WorkGroup=20=D0=BE=D0=B1=D1=8A?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0=20=D0=B8=D0=B7=20=D0=90=D0=98=D0=A5=20?= =?UTF-8?q?=D0=98=D0=A2=20=D0=B2=20=D0=9F=D0=90=D0=A0=D0=A0=20=D0=B7=D0=BD?= =?UTF-8?q?=D0=B0=D1=87=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B1=D1=8B=D0=BB=D0=BE?= =?UTF-8?q?=20null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.DAL/Services/Implementations/HostService.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/PARR.DAL/Services/Implementations/HostService.cs b/PARR.DAL/Services/Implementations/HostService.cs index b572a673..782fd6df 100644 --- a/PARR.DAL/Services/Implementations/HostService.cs +++ b/PARR.DAL/Services/Implementations/HostService.cs @@ -40,7 +40,11 @@ namespace PARR.DAL.Services.Implementations private IQueryable GetHostWithIncludeApps() { - return EntitySet.Include(t => t.ApplicationsInHosts).ThenInclude(a => a.Application).ThenInclude(t => t!.ApplicationType); + return EntitySet + .Include(t => t.ApplicationsInHosts) + .ThenInclude(a => a.Application) + .ThenInclude(t => t!.ApplicationType) + .Include(t => t.WorkGroup); }