var ordersInLastThirtyDays = await _dbContext.Orders
.AsSplitQuery()
.IgnorePending()
.Where(x => x.InternalPropertyId == request.InternalPropertyId && x.UserId == _auth.GetCurrentUserId())
.Include(x => x.Customer)
.Include(x => x.RentableReservations)
.ToListAsync();