I have tableEntity that contains byte[]
property
[StorageTableName("TestTable")]
public class TestTableEntity : TableEntity
{
public byte[] Data { get; set; }
}
In this property I want to put some file converted into bytes (if it is incorrect - please suggest another solution).
var table = tableStorage.Table<TestTableEntity>();
await table.CreateIfNotExistsAsync();
var entity = new TestTableEntity
{
Data = data, //byte[]
PartitionKey = partitionKey, //date
RowKey = schemaName// string
};
await table.InsertOrUpdateAsync(entity);
At step of insert I get error
The remote server returned an error: (413) The request body is too large and exceeds the maximum permissible limit..
Cause array is really huge.
Is there any ways how to resolve this?