This file contains hidden or 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
| [Test] | |
| public async Task ElasticClient_Test() | |
| { | |
| var people = new List<Person> | |
| { | |
| new Person { Id = 1 }, | |
| new Person { Id = 2 }, | |
| }; | |
| var hits = new List<IHit<Person>> |