How do I get the value of the IDENTITY column after adding a new record in the table?

Hi All,

How do I get the value of the Identity column after creating a new record in the table?

Screenshot of the new record being added.

Details of the row added. Identity column name is [table_Address].[Id].

Hello @joelhtown80,

the value of the new record, before saving to the table can be located within the newRow state property of your table, see the below screenshot


But if you have already written to the table and you can't see the data, you would need to add a success event handler that reloads your table after adding a new row to it.

This would show you, your new data and you should be able t access it\

Hope this answers your query