Skip to content

关于 oracle CLOB NCLOB 大文本类型 #259

Closed
@2881099

Description

@2881099

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; }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions