抱歉,如果这听起来像是一个相当愚蠢的问题,但我想对 Windows Azure 表中的数据进行“选择”。我尝试了以下方法并且成功了:
from question in _statusTable.GetAll()
where status.RowKey.StartsWith(name)
然后我尝试了
from question in _statusTable.GetAll()
where status.Description.StartsWith(name)
这个没有给我任何东西。谁能向我解释是否或如何查询不属于 RowKey 或 PartitionKey 的行。