Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Phil Gieseke
0
Views
2
Comments
Using a Table or Query as an array
Question
Given a Query List or a Table, is there a way to reference each row directly in an Action? For example: QueryList(n), where n is the row I wish to use.
Phil
Nuno Reis
MVP
Yes, List[n].
A query can return several entities at once. To get the n from GetEntity1, use the expression
Query.List[n].Entity1
that returns a Record of type Entity1.
Phil Gieseke
Thanks. Got it.
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...