I have a question on how the SQL DataSource works. We've added some custom DMI to a SQL data source, which all works great. On the "add" operation, we want to also add related records. It looks like the add operation first does the insert, then does a fetch (calling our fetch binding). Is there a way to control when that fetch happens?
Here's what currently happens:
					Here's what currently happens:
- add operation on data source, inserts to table
 - fetch code happens immediately afterwards
 - DMI inserts related records
 - Response returns
 
Comment