在测试应用程序中,我想创建搜索索引。
我有一个要发送到天蓝色搜索索引的对象列表。
使用以下代码创建索引本身:
await client.Indexes.CreateAsync(myIndexDefinition);
这行得通,我可以在门户中看到带有定义字段的索引。
现在我尝试添加一个文档。
using (SearchIndexClient index = client.Indexes.GetClient(cityIndexName))
{
List<IndexAction> items = cities.Select(CreatecCtion).ToList();
var batch = new IndexBatch(items);
await index.Documents.IndexAsync(batch);
}
[...]
private IndexAction CreateACtion(city city)
{
var doc = new Document
{
{ "CityId", city.Id }
};
var action = new IndexAction(IndexActionType.Upload, doc);
return action;
}
运行代码后,所有项目的结果都表明它们成功并且包含我设置的 Id。但是当我查看该索引的门户时,计数为 0。
任何暗示我做错了什么?