-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add article_case property to IElisionTokenFilter #3570
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks for opening @cgbeutler, this is missing. We'll add it into the next release. In the meantime, you can add it by deriving from public class MyElisionTokenFilter : ElisionTokenFilter
{
[PropertyName("articles_case")]
public bool? ArticlesCase { get; set; }
} and use this in your settings using |
russcam
added a commit
that referenced
this issue
Feb 13, 2019
Added #3572 to address |
russcam
added a commit
that referenced
this issue
Mar 6, 2019
russcam
added a commit
that referenced
this issue
Mar 6, 2019
russcam
added a commit
that referenced
this issue
Mar 6, 2019
SukharevAndrey
pushed a commit
to SukharevAndrey/elasticsearch-net
that referenced
this issue
Mar 13, 2019
russcam
added a commit
that referenced
this issue
Apr 3, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the feature:
ElasticSearch allows for an elision filter to have a property called "article_case"
This property appears to be missing from the fluent definitions for Nest. It would be nice to have that added so one could truly recreate the default french filter as elastic search has it internally. This would probably involve adding
ArticleCase
to theIElisionTokenFilter
.Something like:
The text was updated successfully, but these errors were encountered: