PL-200 · Question #188
PL-200 Question #188: Real Exam Question with Answer & Explanation
The correct answer is C: FetchXML. {"question_number": 9, "correct_answers": ["C"], "explanation": "In Power Apps portals (now Power Pages), web templates use the Liquid templating language to render dynamic content. To query a Dataverse table from within a web template, you use the fetchxml Liquid tag (C), which
Question
You create a new Power Apps portal Web template for the Account table. What tag do you use to query the table?
Options
- ASQL
- BWebAPI
- CFetchXML
- DRaw
- EOData
Explanation
{"question_number": 9, "correct_answers": ["C"], "explanation": "In Power Apps portals (now Power Pages), web templates use the Liquid templating language to render dynamic content. To query a Dataverse table from within a web template, you use the fetchxml Liquid tag (C), which accepts a FetchXML query string - the same XML-based query language used throughout the Power Platform for Dataverse data retrieval. For example: {% fetchxml query %}...<fetch>...</fetch>{% endfetchxml %}. SQL (A) is not supported directly in portal templates. WebAPI (B) is used client-side via JavaScript, not in server-side Liquid templates. OData (E) is a protocol used via the Web API endpoint, not a Liquid tag. 'Raw' (D) is not a valid Liquid query tag for Dataverse.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.