Releases: stormid/nest-searchify
Releases · stormid/nest-searchify
v6.2.0
v6.1
-
Introduces new package containing a
JsonNetSerializer
implementation calledTypeAndConnectionSettingsAwareJsonNetSerializer
that will serialize type information via Json.NET -
Introduces type filter within the
SearchParametersQuery
that will apply a term filter against a specified type field within your documents -
Library only includes
netstandard2.0
libraries, consumers should use at leastnet461
and consider upgrading tonet472
for full netstandard compatibility
v6.0.2
v6.0.1
v0.12.10
v0.12.9
Fixes:
- #24 -
QueryStringParser
does not supportbool
This release implements support for bool
and bool?
parameter types. Review the unit tests for sample usage.
bool
parameters will default to false, theQueryStringParser
will not renderproperty=false
in this case, only then the parameter is true will any querystring output be given.bool?
parameters will default to null, theQueryStringParser
will not renderproperty=
in this case, forbool?
rendered query string will include:property=false
andproperty=true