作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
棘手的部分是RowKey
是字符串
,其值类似于Mon Nov 14 12:26:42 2016
我尝试使用 Timestamp
进行查询,例如
var lowerlimit = DateTime.UtcNow; // its should be nearer to table timestamp data.
TableQuery<TemperatureEntity> query2 = new TableQuery<TemperatureEntity>().Where(TableQuery.GenerateFilterConditionForDate("Timestamp", QueryComparisons.GreaterThanOrEqual,lowerlimit));
var test = table.ExecuteQuery(query2);
MyEntity.cs
public class MyEntity : TableEntity
{
public MyEntity(string partitionKey, string rowKey)
{
this.PartitionKey = partitionKey;
this.RowKey = rowKey;
}
public MyEntity() { }
public Int64 DevideId { get; set; }
public string RowKey { get; set; }
}
//下面的查询给出了完整的数据Program.cs
// Retrieve the storage account from the connection string.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
// Create the table client.
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
// Create the CloudTable object that represents the "TemperatureData" table.
CloudTable table = tableClient.GetTableReference("TemperatureData");
// retrive data
TableQuery<TemperatureEntity> query = new TableQuery<TemperatureEntity>();
var data = table.ExecuteQuery(query);
最佳答案
新,
如果您需要在分区中拥有最新条目,那么使用字符串日期时间作为行键并不是一个好方法,因为表存储根据行键按升序存储实体。
如果在当前点您可以更改行键的值,请使用DateTime.UtcNow.Ticks
:
var invertedTimeKey = DateTime.MaxValue.Ticks - DateTime.UtcNow.Ticks
通过这种方法,在查询表时,您将能够获取与最新对应的 1 个条目。
如果您无法更改行键的值,则必须检索分区中的所有条目,这意味着将所有条目加载到内存中,然后使用时间戳对它们进行排序以检索最后一个条目。如果您有很多条目,这绝对不是一个好方法。
var lastResult = results.OrderByDescending(r => r.Timestamp).FirstOrDefault();
关于c# - 如何在Azure表存储中使用RowKey或时间戳检索最新记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40593939/
我是一名优秀的程序员,十分优秀!