私は次のクラスを持っています:
public class Content {
public string PartitionKey { get; set; }
public string RowKey { get; set; }
}
次のビュー モデル:
public class ContentViewModel
{
public ContentViewModel() { }
public Content Content { get; set; }
public bool UseRowKey {
get {
return this.Content.PartitionKey.Substring(2, 2) == "05" ||
this.Content.PartitionKey.Substring(2, 2) == "06";
}
}
}
ViewModel に "UseRowKey" フィールドを作成しました。ただし、これを Content クラスの一部であるメソッドとして作成することはできますか?