Skip to content

Commit a6c0cf5

Browse files
committed
NH-3196 - Port-back support of guid.native generator for MsSqlCeDialect
(cherry picked from commit 3d33695)
1 parent 8068466 commit a6c0cf5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/NHibernate/Dialect/MsSqlCeDialect.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ public override string IdentityColumnString
9292
get { return "IDENTITY NOT NULL"; }
9393
}
9494

95+
public override string SelectGUIDString
96+
{
97+
get { return "select newid()"; }
98+
}
99+
95100
public override bool SupportsLimit
96101
{
97102
get { return false; }

0 commit comments

Comments
 (0)