From 0292de371d493797815ed48094d95d7ee7061fa8 Mon Sep 17 00:00:00 2001 From: Sarah Faey Date: Sun, 4 Dec 2022 22:16:24 +0100 Subject: [PATCH] GetRaids no longer reads RaidLogs for performance reasons --- Lieb/Data/RaidService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Lieb/Data/RaidService.cs b/Lieb/Data/RaidService.cs index 8ebc0d6..8026187 100644 --- a/Lieb/Data/RaidService.cs +++ b/Lieb/Data/RaidService.cs @@ -20,7 +20,6 @@ namespace Lieb.Data using var context = _contextFactory.CreateDbContext(); return context.Raids .Include(r => r.Roles) - .Include(r => r.RaidLogs) .Include(r => r.Reminders) .Include(r => r.SignUps) .ThenInclude(s => s.LiebUser)