Global settings
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
Set settings only once to all searchs using global settings
Useful when use same parameters to all searchs
In your services configurations (used to add Solr Express services in DI provider), invoke method UseOptions
Set options with necessary parameter, field behaviour or some other feature provided by Solr Express
services
.AddSolrExpress<TechProduct>(builder => builder
.UseOptions(options =>
{
// ... Global settings
})
// ... Other settings
);