如下,在实体中,如果想将Description字段设置为Clob类型的,在字段上添加Column的特性以及对应的TypeName即可

[Column(TypeName = "CLOB")]
public string Description { get; set; }