You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var test = elasticClient.Search<ProductDoc>
(s => s.AllTypes()
.Take(100)
.Skip(0)
.Fields(fils => fils.Fields(f => f.ProductID, f => f.ProductName)));
Is the Fields in the response meant to be null? Am I mean to loop each hit to get the field values?
The text was updated successfully, but these errors were encountered:
I have the follow simple query
Is the
Fields
in the response meant to be null? Am I mean to loop eachhit
to get the field values?The text was updated successfully, but these errors were encountered: