我在ElasticSearch中使用NEST我希望检查类型存在跟随代码:
User user =new User()
{
Id=3,
Key= Guid.NewGuid(),
UserName="gholzam"
};
elasticClient.Index<User>(user);
我可以检查ElasticSearch中是否存在用户类型?怎么样?
答案 0 :(得分:3)
types exists的支持刚刚添加到NEST,将在1.1版本中提供。
用法:
var result = client.TypeExists(f=>f.Index("myIndex").Type("myType"));
您还可以从CI构建here中获取NuGet包。