Skip to content

Commit 4267857

Browse files
committed
Enhancing DbQueryBuilder
1 parent d6a92de commit 4267857

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Foundation.NetStandard-2.0/DbQueryBuilding/DbQueryBuilder.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,10 @@ private static string GetCSharpTypeName(string csharpDataType, string sqlDataTyp
428428
csharpTypeName = nameof(DateTime);
429429
break;
430430

431+
case "tinyint":
432+
csharpTypeName = CSharpTypeName.Byte;
433+
break;
434+
431435
default:
432436
throw new NotImplementedException();
433437
}

0 commit comments

Comments
 (0)