Currently, if I Insert Data in to a table and there is a column that acts as the Identity Provider, the only way I can get that Identity back is if I do a separate Query Data to find the row I just inserted.
This is not ideal, since I may not be able to make a Query that is totally unique to the Identity I just created.
An option to have the same Insert Data activity perform
SELECT SCOPE_IDENTITY()
would also be useful, as this will return the value of the Identity Providers as a token from the Insert Data activity. That could then be inserted in to other tables using subsequent Queries. This is especially useful for building Case Management systems.