在嘗試向azure-storage-table
中插入數據對象時,TableEntity.Flatten
正在拋出異常。Azure TableEntity Flatten方法不適用於「Byte」數據類型
System.Runtime.Serialization.SerializationException: Unsupported type : System.Byte encountered during conversion to EntityProperty.
數據對象包含不被支持byte
屬性。當我從上游接收到這個數據對象時,我將以新的class
結尾,複製所有屬性,同時將byte
屬性更改爲int
。
還有其他更好的選擇嗎?
我不使用TableEntity,我直接使用Flatten方法將我的數據對象轉換爲DynamicTableEntity – Saravanan