rowguid is not importing/creating correctly in sql server 2016
if you change column.cs to this:
case "sysname":
if (IsRowGuidCol) val.Append(@" ROWGUIDCOL");
val.Append($" {IsNullableText}");
if (includeDefaultConstraint) val.Append(DefaultText);
if (Identity != null) val.Append(IdentityText);
rowguid is not importing/creating correctly in sql server 2016
if you change column.cs to this:
case "sysname": if (IsRowGuidCol) val.Append(@" ROWGUIDCOL"); val.Append($" {IsNullableText}"); if (includeDefaultConstraint) val.Append(DefaultText); if (Identity != null) val.Append(IdentityText);
it will work