Example #1
0
        public bool Exists(AbstractConnection connection, Entity entity)
        {
            var client = new ElasticSearchClientFactory().Create(connection, entity);

            return(client.Client.IndicesExists(client.Index).HttpStatusCode == 200);
        }
 public bool Exists(AbstractConnection connection, Entity entity) {
     var client = new ElasticSearchClientFactory().Create(connection, entity);
     return client.Client.IndicesExists(client.Index).HttpStatusCode == 200;
 }