Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit cc21876

Browse files
committed
Fixed case of "hierarchyid", which made a unit test fail on SQL Server with a case-sensitive server collation
1 parent a46498e commit cc21876

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.OrmLite.SqlServer.Converters/SqlServerHierarchyIdTypeConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public SqlServerHierarchyIdTypeConverter() : base()
1616

1717
public override string ColumnDefinition
1818
{
19-
get { return "HIERARCHYID"; }
19+
get { return "hierarchyid"; }
2020
}
2121

2222
public override DbType DbType

0 commit comments

Comments
 (0)