QuestionQ383

Develop and test code

A company uses Dynamics 365 Supply Chain Management.

The company requires a data-access framework that:

  • Ensures queries can be extended with future filtering conditions
  • Executes queries efficiently and returns results

You need to use SysDa to construct the query.

Which SysDa class should be used for each purpose? Each class can be used once, more than once, or not at all.

Drag & Drop
SysDaSearchObject
SysDaSearchStatement
SysDaQueryObject
Query for record search
Run search
Explanation

SysDaQueryObject defines the query and supports clauses such as WHERE, joins, ordering, and grouping, allowing future filtering to be added. SysDaSearchStatement executes a SysDaSearchObject through methods such as findNext to return the selected records.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!