We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24ee723 commit 9dfaf9fCopy full SHA for 9dfaf9f
src/NHibernate/Dialect/MySQL55Dialect.cs
@@ -0,0 +1,12 @@
1
+using System.Data;
2
+
3
+namespace NHibernate.Dialect
4
+{
5
+ public class MySQL55Dialect : MySQL5Dialect
6
+ {
7
+ public MySQL55Dialect()
8
9
+ RegisterColumnType(DbType.Guid, "CHAR(36)");
10
+ }
11
12
+}
src/NHibernate/NHibernate.csproj
@@ -148,6 +148,7 @@
148
<Compile Include="Dialect\MsSql2012Dialect.cs" />
149
<Compile Include="Dialect\MsSql7Dialect.cs" />
150
<Compile Include="Dialect\MsSqlAzure2008Dialect.cs" />
151
+ <Compile Include="Dialect\MySQL55Dialect.cs" />
152
<Compile Include="Dialect\MySQLDialect.cs" />
153
<Compile Include="Dialect\PostgreSQLDialect.cs" />
154
<Compile Include="Dialect\Schema\PostgreSQLMetadata.cs" />
0 commit comments