If I want to save binary to Azure Table, when I create a class inherited by TableServiceEntity, whats the datatype should I use? and how to check the length for the datatype to insure its not over 64k
public class SomeEntity : TableServiceEntity
{
public whattype BinaryData { get; set; }
}