We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
oracle11g中定义的类型为DATE,用工具FreeSql.Generator生成的实体属性为[JsonProperty, Column(DbType = "DATE(7)")],然后codefirst根据实体创建表的时候就会有问题:ORA-00907: missing right parenthesis,是因为生成的语句为:"MyDate" DATE(7),这个写法oracle报错,改为[JsonProperty, Column(DbType = "DATE")]之后程序可以正常执行
The text was updated successfully, but these errors were encountered:
好的,先改模板再生成一次解决当下使用问题
Sorry, something went wrong.
- 修复 Oracle DbFirst date 类型 bug;#627
cff5205
v2.3.0-preview20210105 (myget.org) #627
1e6c6fc
v2.3.100 #674 #533 #642 #643 #627 #656 #684
1398514
v2.3.106 #674 #533 #642 #643 #627 #656 #684 #337
a1a1204
No branches or pull requests
oracle11g中定义的类型为DATE,用工具FreeSql.Generator生成的实体属性为[JsonProperty, Column(DbType = "DATE(7)")],然后codefirst根据实体创建表的时候就会有问题:ORA-00907: missing right parenthesis,是因为生成的语句为:"MyDate" DATE(7),这个写法oracle报错,改为[JsonProperty, Column(DbType = "DATE")]之后程序可以正常执行
The text was updated successfully, but these errors were encountered: