Skip to content

Instantly share code, notes, and snippets.

@nest-don
Created December 6, 2018 00:28
Show Gist options
  • Save nest-don/0ef04deee8bfa08dead9f48ddafc793e to your computer and use it in GitHub Desktop.
Save nest-don/0ef04deee8bfa08dead9f48ddafc793e to your computer and use it in GitHub Desktop.
private string QueryService(string text, string service)
{
Inkton.Nest.Model.Nest searchNest = _runtime.GetNest(service);
SearchQuery query = new SearchQuery();
query.Id = _runtime.ComponentId + "." + DateTime.Now.Ticks.ToString();
query.Service = service;
query.MaxResults = 100;
query.Text = text;
_runtime.Send(query, searchNest, typeof(SearchQuery), query.Id);
return _runtime.QueueClient.LastCorrelationId;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment