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

Commit 46f586b

Browse files
committed
Fixed byte issue for oracle
1 parent 9081a01 commit 46f586b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ServiceStack.OrmLite.Oracle/OracleOrmLiteDialectProvider.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ public override object ConvertDbValue(object value, Type type)
8686
return new Guid(value.ToString());
8787
}
8888

89+
if (type == typeof(byte[]))
90+
return value;
91+
8992
try
9093
{
9194
return base.ConvertDbValue(value, type);

0 commit comments

Comments
 (0)