Select Statement Vs Find in Ax
问题 while writing code we can either use select statement or select field list or find method on table for fetching the records. I wonder which of the statement helps in better performance 回答1: It really depends on what you actually need. find() methods must return the whole table buffer, that means, all of the columns are projected into the buffer returned by it, so you have the complete record selected. But sometimes you only need a single column, or just a few. In such cases it can be a waste