我有这堂课:
public class ContentViewModel
{
public Content Content { get; set; }
public bool UseRowKey {
get {
return Content.PartitionKey.Substring(2, 2) == "05" ||
Content.PartitionKey.Substring(2, 2) == "06";
}
}
public string TempRowKey { get; set; }
}
我现在正在这样做:
var vm = new ContentViewModel();
vm.Content = new Content(pk);
vm.Content.PartitionKey = pk;
vm.Content.Created = DateTime.Now;
有什么方法可以改变我的 ContentViewModel 以便我不需要执行最后三个语句?