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 c407f8c commit 78df014Copy full SHA for 78df014
src/NHibernate.Test/NHSpecificTest/GH3530/Fixture.cs
@@ -47,13 +47,13 @@ protected override void CreateSchema()
47
var table = GetQualifiedName(catalog, schema, "LocaleEntity");
48
49
sb.Append($"{Dialect.CreateTableString} {table} (");
50
- sb.Append($"Id ");
+ sb.Append("Id ");
51
52
if (Dialect.HasDataTypeInIdentityColumn)
53
{
54
sb.Append($"{intType}");
55
}
56
- sb.Append($" {Dialect.GetIdentityColumnString(DbType.Int32)}, ");
+ sb.Append(" ").Append(Dialect.GetIdentityColumnString(DbType.Int32)).Append(", ");
57
58
// Generate columns
59
sb.Append($"IntegerValue {stringType}, ");
0 commit comments