Combine two queries

@subrato You can use either a string

.Field("sitename.keyword")

or an expression

.Field(f => f.Sitename.Suffix("keyword"))

Take a look at the documentation on field inference.