我正在尝试使用 Patitionkey 和 Rowkey 从天蓝色表中获取单个实体。我在这里面临的问题是,当没有实体具有匹配的 Partitionkey 或 Rowkey 时,它不会返回 null。
MyRecordsTable specificEntity =
(from e in serviceContext.CreateQuery<MyRecordsTable >("MyRecordsTable ")
where e.PartitionKey == pkey && e.RowKey == rkey
select e).FirstOrDefault();
我参考了以下链接,它说如果没有匹配,则应返回 null。但我得到一个异常(An error occurred while processing this request.
)内部异常是No resource found.
http://www.windowsazure.com/en-us/develop/net/how-to-guides/table-services/#header-11