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 a863710 commit 5551839Copy full SHA for 5551839
src/NHibernate.Test/Async/NHSpecificTest/GH3530/Fixture.cs
@@ -59,15 +59,9 @@ protected override void CreateSchema()
59
var table = GetQualifiedName(catalog, schema, "LocaleEntity");
60
61
sb.Append($"{Dialect.CreateTableString} {table} (");
62
- sb.Append("Id ");
63
-
64
- if (Dialect.HasDataTypeInIdentityColumn)
65
- {
66
- sb.Append($"{guidType}");
67
- }
68
- sb.Append(" ").Append(Dialect.GetIdentityColumnString(DbType.Guid)).Append(", ");
69
70
// Generate columns
+ sb.Append($"Id {guidType}, ");
71
sb.Append($"IntegerValue {stringType}, ");
72
sb.Append($"DateTimeValue {stringType}, ");
73
sb.Append($"DoubleValue {stringType}, ");
0 commit comments