通过利用Windows Azure SDK,我尝试使用CloudTable.ExecuteBatchAsync和TableBatchOperations插入实体。
该实体序列化为Json:
{
"LastAccessDate":"2015-02-27T00:00:00Z",
"Title":"Google open-sources HTTP/2-based RPC framework",
"PublicationDate":"0001-01-01T00:00:00",
"Id":"tag:theregister.co.uk,2005:story/2015/02/27/google_opensources_http2based_rpc_framework/",
"LastUpdatedDate":"2015-02-27T00:00:00Z",
"FeedUrl":"http://www.theregister.co.uk/software/developer/headlines.atom",
"Url":"http://go.theregister.com/feed/www.theregister.co.uk/2015/02/27/google_opensources_http2based_rpc_framework/",
"PartitionKey":"http%3a%2f%2fwww.theregister.co.uk%2fsoftware%2fdeveloper%2fheadlines.atom",
"RowKey":"http%3a%2f%2fgo.theregister.com%2ffeed%2fwww.theregister.co.uk%2f2015%2f02%2f27%2fgoogle_opensources_http2based_rpc_framework%2f",
"Timestamp":"0001-01-01T00:00:00+00:00",
"ETag":null
}
由此POCO实体代表:
public class SyndicationFeedArticle : TableEntity
{
public virtual DateTime LastAccessDate { get; set; }
public virtual string Title { get; set; }
public virtual DateTime PublicationDate { get; set; }
public virtual string Id { get; set; }
public virtual DateTime LastUpdatedDate { get; set; }
public virtual string FeedUrl { get; set; }
public virtual string Url { get; set; }
}
当实体是从RSS xml处理构建时出现问题。插入的ExecuteBatch抛出Unexpected response code for operation : 0
。我明白这意味着索引0处的批处理操作失败。通常,分区或行键不正确是一个问题,例如包含无效字符(上面不是这种情况)或大小超过1kb,在这种情况下不适用。
令我困惑的是:
new()
创建和RSS业务代码)在单元测试我正在寻找的是如何解决这个问题的指针。我在单元测试中重新创建了各种场景,并确保我的实体不会破坏键的约束但没有运气。我的主要问题是为什么我不能在模拟器和云之间获得持续的行为。这真的会帮助我,或者至少,它会指向另一种方法来解决这个问题。
谢谢!
答案 0 :(得分:2)
好的,明白了。 在这种特殊情况下会发生什么:
PublicationDate
使用DateTimeOffset.Date作为源值进行实例化,可以在MinValue中设置。表存储不支持DateTime列的MinValue。
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code>OutOfRangeInput</code>
<message xml:lang="en-US">One of the request inputs is out of range. RequestId:9e74bf7a-0002-004e-1142-16dabb000000 Time:2015-02-28T02:01:42.2124803Z</message>
</error>
我更改了DateTime?
的实体属性,并将其作为业务规则进行管理。当然,我想知道为什么在本地模拟器上支持这个...