github.com/ravendb/ravendb-go-client@v0.0.0-20240229102137-4474ee7aa0fa/where_params.go (about)

     1  package ravendb
     2  
     3  // whereParams are parameters for the Where Equals call
     4  type whereParams struct {
     5  	fieldName      string
     6  	value          interface{}
     7  	allowWildcards bool
     8  	isNestedPath   bool
     9  	isExact        bool
    10  }