我有一系列由TableEntity表示的Report
。它有许多不同的属性,但通常我只需要ReportID
属性。
public class ReportEntity : TableEntity
{
public ReportIDEntity()
{}
internal ReportIDEntity(Guid reportID, .../*other properties*/)
{
ReportID = reportID;
//assign other properties
}
public Guid ReportID { get; set; }
//other properties
}
我为此编写了一个投影查询,因此我不必为获取ID而检索整个实体:
const String __ID_COLUMN = "ReportID"; //yuck
IEnumerable<Guid> ids =
_cloudTable_.ExecuteQuery(
new TableQuery<DynamicTableEntity>().Where(
TableQuery.GenerateFilterCondition(
"PartitionKey", QueryComparisons.Equal, partitionKey))
.Select(new[] { __ID_COLUMN }),
(key, rowKey, timestamp, properties, etag) => properties[__ID_COLUMN].GuidValue.Value);
但是,这非常难看(我需要将属性名称指定为字符串来检索它,代码很长)。
如果我创建一个仅具有ReportID
属性的TableEntity并查询该怎么办?
这会检索所有数据,还是与投影查询一样精简(带宽)?
public class ReportIDEntity : TableEntity
{
public ReportIDEntity()
{}
internal ReportIDEntity(Guid reportID)
{
ReportID = reportID;
}
public Guid ReportID { get; set; }
}
public class ReportEntity : ReportIDEntity
{
public ReportEntity()
{}
internal ReportEntity(Guid reportID, .../*other properties*/)
: base(reportID)
{
//assign other properties
}
//other properties
}
然后查询将是:
IEnumerable<Guid> reportEntities =
_cloudTable_.ExecuteQuery(
new TableQuery<ReportIDEntity>().Where(
TableQuery.GenerateFilterCondition(
"PartitionKey", QueryComparisons.Equal, partitionKey)))
.Select(e => e.ReportID);
答案 0 :(得分:2)
要回答您的问题,使用Query Projection
会更有效,因为它是服务器端操作,而表服务只返回仅包含ReportID
属性(属性)的实体,因此数据流量减少网络。当您使用不带投影的查询时,将返回所有属性,除了ReportID
,在反序列化过程中,客户端将丢弃所有其他属性。