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
v1.3.2 版本解决办法,使用 BLOB 类型 + byte[] 解决存储问题,读写正常。
public byte[] Data { get; set; }
v1.3.2 后面的版本采取以下方法:
[Column(DbType = "clob")] public string Data { get; set; } //或者 [Column(StringLength = -1)] public string Data { get; set; }
The text was updated successfully, but these errors were encountered:
注意:使用 .NoneParameter(true) 可能会报错
Oracle.ManagedDataAccess.Client.OracleException:“ORA-01704: 字符串文字太长”
Sorry, something went wrong.
- 增加 Oracle CLOB/NCLOB 大文本类型读写支持;#259
7795296
No branches or pull requests
v1.3.2 版本解决办法,使用 BLOB 类型 + byte[] 解决存储问题,读写正常。
v1.3.2 后面的版本采取以下方法:
The text was updated successfully, but these errors were encountered: