diff --git a/DysonNetwork.Sphere/Account/AccountService.cs b/DysonNetwork.Sphere/Account/AccountService.cs index eddd66b..437a9f5 100644 --- a/DysonNetwork.Sphere/Account/AccountService.cs +++ b/DysonNetwork.Sphere/Account/AccountService.cs @@ -55,6 +55,7 @@ public class AccountService( { var accountsId = await db.Accounts.Select(a => a.Id).ToListAsync(); var missingId = await db.AccountProfiles + .IgnoreAutoIncludes() .Where(p => !accountsId.Contains(p.AccountId)) .Select(p => p.AccountId) .ToListAsync();