From 6f5839b4e10f858795a373a223f844985201ba09 Mon Sep 17 00:00:00 2001 From: huydoan961z <144944736+huydoan961z@users.noreply.github.com> Date: Thu, 20 Nov 2025 23:11:14 +0700 Subject: [PATCH] update-relation --- .../Services/Event/RegistrationService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs b/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs index a3465a6..a3e350a 100644 --- a/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs +++ b/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs @@ -212,6 +212,7 @@ public async Task GetJoinMeetingInfoAsync(Guid registrationI var registration = await _context.Registrations .Include(r => r.TicketType) .ThenInclude(tt => tt.Event) + .Include(u=> u.User) .FirstOrDefaultAsync(r => r.RegistrationId == registrationId && r.UserId == currentUserId.Value); if (registration == null)