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 101945a commit 12dd8dfCopy full SHA for 12dd8df
src/NHibernate.Test/Async/NHSpecificTest/GH3530/Fixture.cs
@@ -58,13 +58,13 @@ protected override void CreateSchema()
58
var table = GetQualifiedName(catalog, schema, "LocaleEntity");
59
60
sb.Append($"{Dialect.CreateTableString} {table} (");
61
- sb.Append($"Id ");
+ sb.Append("Id ");
62
63
if (Dialect.HasDataTypeInIdentityColumn)
64
{
65
sb.Append($"{intType}");
66
}
67
- sb.Append($" {Dialect.GetIdentityColumnString(DbType.Int32)}, ");
+ sb.Append(" ").Append(Dialect.GetIdentityColumnString(DbType.Int32)).Append(", ");
68
69
// Generate columns
70
sb.Append($"IntegerValue {stringType}, ");
0 commit comments