Created
July 26, 2020 05:25
-
-
Save bleroy/e65b2c33ec9f132dcb5a4b61df243ad1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var index = await Index.Build(async builder => | |
{ | |
builder | |
.AddField("title") | |
.AddField("body") | |
await builder.Add(new Document | |
{ | |
{ "title", "Twelfth-Night" }, | |
{ "body", "If music be the food of love, play on: Give me excess of it…" }, | |
{ "author", "William Shakespeare" } | |
{ "id", "1" }, | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment