Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
zfluok committed Apr 28, 2023
2 parents e3a06f8 + d95ab0a commit d60953e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand All @@ -15,7 +15,7 @@ public static string MapCsharpType(string dbtype, bool isNullable)
string csharpType = "object";
switch (dbtype)
{
case "bigint": csharpType = "long"; break;
case "bigint": csharpType = isNullable ? "long?" : "long"; break;
case "binary": csharpType = "byte[]"; break;
case "bit": csharpType = isNullable ? "bool?" : "bool"; break;
case "char": csharpType = "string"; break;
Expand Down

0 comments on commit d60953e

Please sign in to comment.