Ver código fonte

mysql字段类型 .net类型转换

Signed-off-by: 高级CV工程师 <2535688890@qq.com>
高级CV工程师 5 meses atrás
pai
commit
2a82284114
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      Admin.NET/Admin.NET.Core/Utils/CodeGenUtil.cs

+ 2 - 0
Admin.NET/Admin.NET.Core/Utils/CodeGenUtil.cs

@@ -221,6 +221,8 @@ public static class CodeGenUtil
             "money" or "smallmoney" or "numeric" or "decimal" => "decimal",
             "real" => "Single",
             "datetime" or "datetime2" or "smalldatetime" => "DateTime",
+            "date" => "DateOnly",// MYSQL
+            "time" => "TimeOnly",// MYSQL
             "float" or "double" => "double",
             "image" or "binary" or "varbinary" => "byte[]",
             "uniqueidentifier" => "Guid",