You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
current implementation (2.0.0) only supports returning id of inserted row if you explicitly name the column as SCOPE_IDENTITY such as.., INSERT myTable (col1) VALUES (1); SELECT SCOPE_IDENTITY() AS [SCOPE_IDENTITY]
this requirement for explicit column naming can be dropped by parsing the recordset object
The text was updated successfully, but these errors were encountered:
current implementation (2.0.0) only supports returning id of inserted row if you explicitly name the column as
SCOPE_IDENTITY
such as..,INSERT myTable (col1) VALUES (1); SELECT SCOPE_IDENTITY() AS [SCOPE_IDENTITY]
this requirement for explicit column naming can be dropped by parsing the recordset object
The text was updated successfully, but these errors were encountered: