We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92afcd4 commit ecd4750Copy full SHA for ecd4750
src/NHibernate.Test/NHSpecificTest/GH3530/Fixture.cs
@@ -56,10 +56,7 @@ protected override void CreateSchema()
56
sb.Append($"DecimalValue {stringType}");
57
58
// Add the primary key contraint for the identity column
59
- if (Dialect.GenerateTablePrimaryKeyConstraintForIdentityColumn)
60
- {
61
- sb.Append($", {Dialect.PrimaryKeyString} ( Id )");
62
- }
+ sb.Append($", {Dialect.PrimaryKeyString} ( Id )");
63
sb.Append(")");
64
65
using (var cn = Sfi.ConnectionProvider.GetConnection())
0 commit comments