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
* Add the support to retrieve the seed/increment for the IDENTITY column (fixes#10).
* Improve code coverage and unit tests.
* Improvate the unit tests.
* Upgrade the version.
* Upgrade NuGet packages for the samples.
* Upgrade the NuGet packages.
@@ -73,7 +75,7 @@ public static IList<SqlTableDifferences> Compare(IReadOnlyList<SqlTable> source,
73
75
this.CompareProperty(column, t =>t.Precision,nameof(column.Precision)),
74
76
this.CompareProperty(column, t =>t.Scale,nameof(column.Scale)),
75
77
this.CompareProperty(column, t =>t.IsNullable,nameof(column.IsNullable)),
76
-
this.CompareProperty(column, t =>t.IsIdentity,nameof(column.IsIdentity)),
78
+
this.CompareProperty(column, t =>t.Identity,nameof(column.Identity),equalityComparer:SqlColumnIdentityComparer.Instance),
77
79
this.CompareProperty(column, t =>t.CollationName,nameof(column.CollationName)),
78
80
this.CompareProperty(column, t =>t.IsComputed,nameof(column.IsComputed)),
79
81
this.CompareProperty(column, t =>TsqlCodeHelper.RemoveNotUsefulCharacters(t.ComputedExpression),nameof(column.ComputedExpression), t =>t.ComputedExpression));
0 commit comments