In this article, learn how to use delete_from in D365. The delete_from keyword in x++ is used to delete specified records from a table as efficiently as possible. This command is extremely fast because it generates a single SQL statement that is sent to the server once. In contrast, other times developers will write a... Continue Reading →
How To Use Update_RecordSet In D365
In this article, learn how to use update_recordset in D365. The update_recordset keyword in x++ is used when you need to update many records in a table quickly with the best performance. It is extremely fast because it generates a single SQL statement that is sent to the server once. Alternatively, developers sometimes write a... Continue Reading →