ばかげた質問のように聞こえるかもしれませんが、Windows Azure テーブルからデータを "選択" したいと考えています。私は次のことを試しましたが、うまくいきました:
from question in _statusTable.GetAll()
where status.RowKey.StartsWith(name)
私はそれから試しました
from question in _statusTable.GetAll()
where status.Description.StartsWith(name)
これは私に何も与えませんでした。RowKey または PartitionKey の一部ではない行に対してクエリを実行できるかどうか、またはその方法を誰かに説明してもらえますか。