私は次のものを持っています:
public class Content {
public string PartitionKey { get; set; }
public string RowKey { get; set; }
...
}
public class ContentViewModel
{
public string RowKey { get; set; }
public Content Content { get; set; }
public Boolean UseRowKey { }
}
UseRowKeyを読み取り専用にし、Content.RowKeyの最初の文字が「X」の場合にtrueを返すようにコーディングする方法を教えてもらえますか?