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 ee81295 commit 92afcd4Copy full SHA for 92afcd4
src/NHibernate.Test/NHSpecificTest/GH3530/Fixture.cs
@@ -47,15 +47,9 @@ protected override void CreateSchema()
47
var table = GetQualifiedName(catalog, schema, "LocaleEntity");
48
49
sb.Append($"{Dialect.CreateTableString} {table} (");
50
- sb.Append("Id ");
51
-
52
- if (Dialect.HasDataTypeInIdentityColumn)
53
- {
54
- sb.Append($"{guidType}");
55
- }
56
- sb.Append(" ").Append(Dialect.GetIdentityColumnString(DbType.Guid)).Append(", ");
57
58
// Generate columns
+ sb.Append($"Id {guidType}, ");
59
sb.Append($"IntegerValue {stringType}, ");
60
sb.Append($"DateTimeValue {stringType}, ");
61
sb.Append($"DoubleValue {stringType}, ");
0 commit comments