I've hit a wall where I can't use stored procs in CSI 9 to accomplish what I need to do (custom built shop floor data collection). At first, it seemed pretty straight forward until I tried to add a subcollection to an IDO.
// Create new SLJobTrans - no problem
IDOUpdateItem newJobTran = new IDOUpdateItem();
// Set newJobTran properties - no problem
newJobTran.Properties.Add("Job", "xxxxx");
// Create new SLLots - no problem
IDOUpdateItem newSLLots = new IDOUpdateItem();
newSLLots.Properties.Add("Item", "MyItem");
Now, how do I add the newSLLots to the SLJobTrans.SLBflushLots subcollection?