Следующий код выполняет сканирование вместо предполагаемого запроса. Пожалуйста, помогите мне решить проблему:
DynamoDBContext context = new DynamoDBContext(client);
DynamoDBOperationConfig indexHashRangeOpConfig = new DynamoDBOperationConfig()
{
IndexName = "ProjectFGDIndex",
ConsistentRead = false,
};
List<Dashboardreq> list =
await context.QueryAsync<Dashboardreq>(req.ProjectName, QueryOperator.Between, new string[] {
req.FileGeneratedFromDate+" " + Constants.DayBeginTime,
req.FileGeneratedToDate+" " + Constants.DayEndTime
}, indexHashRangeOpConfig).GetRemainingAsync();