var esClient = new ElasticClient(new Uri("http://127.0.0.1:9200"));
List<obj> Documents = new List<obj>();
BulkDescriptor descriptor = new BulkDescriptor();
foreach(var doc in Documents)
{
descriptor.Index<object>(i => i
.Index("indexName")
.Type("typeName")
.Id("docId")
.Document(doc));
}
esClient.Bulk(descriptor);
3 个回复
rochy - rochy_he
赞同来自:
从数据库读取的内容可以转换为 Json,然后使用 API 进行提交,可参考下面的代码:
以及下面的代码:
hm
赞同来自:
rochy - rochy_he
赞同来自: