Skip to content

Instantly share code, notes, and snippets.

@ztirom

ztirom/ax_insert Secret

Created November 30, 2018 11:31
Embed
What would you like to do?
AX Insert vs RecordInsertList #1
public static void insert(int rows)
{
BulkInsertTable bulkInsertTable;
for (var i = 0; i < rows; i++)
{
bulkInsertTable.Id = i;
bulkInsertTable.StringValue = strFmt("Value - %1", i);
bulkInsertTable.insert();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment