ExecuteMultipleResponse; How to read and store Guids from the response
问题 I am using ExecuteMultipleResponse method to insert 10 account records at a time using SSIS. List<Entity> _Accounts = new List<Entity>(); // Check the batch size and process public override void InputAccount_ProcessInput(InputAccountBuffer Buffer) { //List<int> personIDs = new List<int>(); int index = 0; while (Buffer.NextRow()) { _Accounts.Add(InputAccountFromBuffer(Buffer)); //personIDs.Add(int.Parse(Buffer.sPersonID)); index++; if (index == 10) { ImportBatch(); index = 0; } } ImportBatch()