Hello,
I am trying to limit the fields that are returned from a query but i cant seem to get the .Fields() part of the query detecting the objects in my class:
var result = client.Search<MyClass>(s => s
.Size(10000)
.Fields(f => f.MyField)
.Query(q => q
When i type .Fields(f => f. I only get the choice to select Fields or Field (not my class fields)
Thanks,