Alternative to PropertyPathMarker in NEST elasticsearch client library

110 Views Asked by At

Im just kick starting my project to migrate elasticsearch from 1.7 to 7.x. As part this, changing my client library NEST to latest version. Im extensively using PropertyPathMaker class in query generation logic. I can't seem to find what is that I need to use in latest version of NEST.

Can any of you help on this.

Below is the sample code i have problem with.

List<KeyValuePair<PropertyPathMarker, ISort>> BuildSortDetails(Dictionary<string, string> sortDetails,
                                                                    SortOrder defaultSortOrder,
                                                                    bool IsCaseInsensitive = false,
                                                                    Dictionary<string, ListedBoolFilterContainers> nestedFilterDetails = null,
                                                                    bool preserveSortOrderValue = false);
1

There are 1 best solutions below

3
Russ Cam On

Field replaces PropertyPathMarker in NEST 2.x onwards.