Skip to content

Commit

Permalink
- 补充 XGDbType
Browse files Browse the repository at this point in the history
  • Loading branch information
2881099 committed Oct 25, 2023
1 parent a0b3d14 commit 4518dc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 100 deletions.
98 changes: 0 additions & 98 deletions FreeSql/FreeSql.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Providers/FreeSql.Provider.Xugu/XuguDbFirst.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ XGDbType GetXGDbType(DbColumnInfo column)
case "VARCHAR": ret = XGDbType.VarChar; break;
case "CLOB": ret = XGDbType.LongVarChar; break;

//case "timestamp": ret = XGDbType.DateTime; break;
case "DATETIME": ret = XGDbType.DateTime; break;
//case "timestamptz": ret = XGDbType.DateTime; break;
//case "date": ret = XGDbType.Date; break;
//case "time": ret = XGDbType.Time; break;
//case "timetz": ret = XGDbType.TimeTz; break;
//case "interval": ret = XGDbType.Interval; break;

case "BOOLEAN": ret = XGDbType.Bool; break;
//case "bytea": ret = XGDbType.Bytea; break;
case "BLOB": ret = XGDbType.LongVarBinary; break;
//case "bit": ret = XGDbType.Bool; break;
//case "varbit": ret = XGDbType.Varbit; break;

Expand Down

0 comments on commit 4518dc6

Please sign in to comment.