DB Merge get back value from autoincrement column

Hi, is there a easy way to get back the autoincrement id field from the updated/inserted record?
The column on the sql server db is creted like this:
CREATE TABLE TEST (
idflied int IDENTITY(1,1) PRIMARY KEY,
testtext nvarchar(max)
);

2 Likes

Hi,
currently this is not supported. But we have a ticket for this.
Bye
Tobias

5 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.