gpt4 book ai didi

.net - 使用 DynamoDB 时 "Unable to find storage information for property"意味着什么?

转载 作者:行者123 更新时间:2023-12-02 04:28:46 28 4
gpt4 key购买 nike

我正在使用适用于 AWS DynamoDB 的 .NET SDK 运行扫描。我正在这样做:

var result = context.Scan<Table>(new[] { new ScanCondition("AttributeName", ScanOperator.Equal, variable) }

这会引发异常

"Unable to find storage information for property [AttributeName]"

属性 AttributeName 是一个非索引属性,目前几乎没有任何值(这是我最近添加的新属性)。

我用谷歌搜索了这个错误,我得到的只是 sdk source code ,我可以深入研究,如果这里没有人能启发我,我会的。

最佳答案

这也吸引了我,分享我的发现希望它可以帮助别人,我正在使用 C# 对象持久模型。

DynamoDb 中的列名称采用驼峰式大小写。 C# 类属性不是。

[DynamoDBProperty("artist")]
[DynamoDBHashKey]
public string Artist { get; set; }

[DynamoDBProperty("songTitle")]
[DynamoDBRangeKey]
public string SongTitle { get; set; }

因此以下会引发错误,

scanConditions.Add(new ScanCondition("songTitle", ScanOperator.BeginsWith, searchReq.SongTitle));
if (!string.IsNullOrEmpty(searchReq.Difficulty))

要修复,

scanConditions.Add(new ScanCondition("SongTitle", ScanOperator.BeginsWith, searchReq.SongTitle));
if (!string.IsNullOrEmpty(searchReq.Difficulty))

关于.net - 使用 DynamoDB 时 "Unable to find storage information for property"意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20798227/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com