Complex x++ to AOT queries using Ranges.
Views (4070)
Recently I came to know that we can make some complex queries in the AOT as well by adding the ranges.
For example
SELECT * FROM EmployeePosition
JOIN * FROM PositionDetailTable
WHERE EmployeePosition.ValidFrom <= PositionDetailTable.ValidFrom
&& EmployeePosition.ValidTo <= PositionDetailTable.ValidTo
Attached is the sample AOT query that will produce the same result. you need to download and remove the .doc extension from the file.
This was originally posted here.

Like
Report
*This post is locked for comments