Skip to content

Instantly share code, notes, and snippets.

@MikeGoldsmith
Created November 3, 2016 13:54
Show Gist options
  • Save MikeGoldsmith/838db2b72b96247ecb4f7b93f977695b to your computer and use it in GitHub Desktop.
Save MikeGoldsmith/838db2b72b96247ecb4f7b93f977695b to your computer and use it in GitHub Desktop.
var query = new SearchQuery
{
Query = new PhraseQuery("inn").Field("name"),
Index = "idx_travel"
};
query.Skip(0).Limit(10).Timeout(TimeSpan.FromSeconds(10));
var result = bucket.Query(query);
foreach (var row in result.Hits)
{
Console.WriteLine(row.Id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment