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 65f5a61 commit 4b7e29bCopy full SHA for 4b7e29b
src/NHibernate.Test/NHSpecificTest/GH3215/FixtureByCode.cs
@@ -1,4 +1,5 @@
1
-using NHibernate.Cfg.MappingSchema;
+using NHibernate.Cfg;
2
+using NHibernate.Cfg.MappingSchema;
3
using NHibernate.Mapping.ByCode;
4
using NUnit.Framework;
5
@@ -25,6 +26,12 @@ protected override HbmMapping GetMappings()
25
26
});
27
return mapper.CompileMappingForAllExplicitlyAddedEntities();
28
}
29
+
30
+ protected override void Configure(Configuration configuration)
31
+ {
32
+ base.Configure(configuration);
33
+ configuration.SetProperty(Environment.Hbm2ddlKeyWords, "auto-quote");
34
+ }
35
36
[Test]
37
public void CountDistinctWithReservedWords()
0 commit comments