public async Task <IActionResult> OnGetAsync(Guid?id) { if (id == null) { return(NotFound()); } Session = await _context.RtcSessions .Include(session => session.Creator) .FirstOrDefaultAsync(m => m.Id == id); if (Session == null) { return(NotFound()); } var user = await _userManager.GetUserAsync(User); // get active invite ActiveInvite = await _inviteService.GetActiveAsync(Session.Id, user.Id); // get all grants (members) Grants = await _context.RtcSessionGrants .OrderByDescending(grant => grant.CreationTime) .Where(grant => grant.Session.Id == Session.Id) .Include(grant => grant.User) .ToListAsync(); Joined = Grants.Any(grant => grant.User == user); return(Page()); }
/// <summary> /// Active Dependent type names of this object /// </summary> public List <string> DependentObjectNames() { var dependentObjects = new List <string>(); if (Grants.Any()) { dependentObjects.Add(typeof(Grant).Name); } return(dependentObjects.Distinct().ToList()); }
/// <summary> /// Active Dependent type names of this object /// </summary> public List <string> DependentObjectNames() { var dependentObjects = new List <string>(); if (Agreements.Any()) { dependentObjects.Add(typeof(Agreement).Name); } if (GisUploadSourceOrganizationsWhereYouAreTheDefaultLeadImplementerOrganization.Any()) { dependentObjects.Add(typeof(GisUploadSourceOrganization).Name); } if (Grants.Any()) { dependentObjects.Add(typeof(Grant).Name); } if (GrantAllocations.Any()) { dependentObjects.Add(typeof(GrantAllocation).Name); } if (OrganizationBoundaryStagings.Any()) { dependentObjects.Add(typeof(OrganizationBoundaryStaging).Name); } if (People.Any()) { dependentObjects.Add(typeof(Person).Name); } if (PersonStewardOrganizations.Any()) { dependentObjects.Add(typeof(PersonStewardOrganization).Name); } if (Programs.Any()) { dependentObjects.Add(typeof(Program).Name); } if (ProjectOrganizations.Any()) { dependentObjects.Add(typeof(ProjectOrganization).Name); } if (ProjectOrganizationUpdates.Any()) { dependentObjects.Add(typeof(ProjectOrganizationUpdate).Name); } return(dependentObjects.Distinct().ToList()); }
/// <summary> /// Does this object have any dependent objects? (If it does have dependent objects, these would need to be deleted before this object could be deleted.) /// </summary> /// <returns></returns> public bool HasDependentObjects() { return(Grants.Any()); }
/// <summary> /// Does this object have any dependent objects? (If it does have dependent objects, these would need to be deleted before this object could be deleted.) /// </summary> /// <returns></returns> public bool HasDependentObjects() { return(Agreements.Any() || GisUploadSourceOrganizationsWhereYouAreTheDefaultLeadImplementerOrganization.Any() || Grants.Any() || GrantAllocations.Any() || OrganizationBoundaryStagings.Any() || People.Any() || PersonStewardOrganizations.Any() || Programs.Any() || ProjectOrganizations.Any() || ProjectOrganizationUpdates.Any()); }