Tshirt というエンティティを、Windows Azure Blob ストレージの BLOB と共に Windows Azure テーブル ストレージに格納しようとしています。そのエンティティ Tshirt には Image (byte[]) というフィールドが含まれていますが、それをテーブルに保存したくありません。そのフィールドを保存したくないことをクラスでどのように示すことができますか?
public class Tshirt : TableServiceEntity
{
    public Tshirt(string partitionKey, string rowKey, string name)
    {
        this.PartitionKey = partitionKey;
        this.RowKey = rowKey;
        this.Name = name;
        this.ImageName = new Guid();
    }
    private string _name;
    public string Name
    {
        get { return _name; }
        set { _name = value; }
    }
    private string _color { get; set; }
    public string Color
    {
        get { return _color; }
        set { _color = value; }
    }
    private int _amount { get; set; }
    public int Amount
    {
        get { return _amount; }
        set { _amount = value; }
    }
    [NonSerialized]
    private byte[] _image;
    public byte[] Image
    {
        get { return _image; }
        set { _image = value; }
    }
    private Guid _imageName;
    public Guid ImageName
    {
        get { return _imageName; }
        set { _imageName = value; }
    }
}