我有以下内容:
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。