I have a table with an auto incrementing identity/primary key column called ID....CREATE TABLE Table1(
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[TextContent] [nvarchar](450) NOT NULL,
[Version] [bigint] NOT NULL)
...When I UPDATE [TextContent], I'd like [...