-
Notifications
You must be signed in to change notification settings - Fork 383
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
Full text index search #706
Comments
I don't believe there's much work occurring on FTS in this provider, but there's a lot going on upstream. The typical workaround is to use If you're looking for something like |
@mguinness , how should we specify full text index on the property of the model ? |
@AliA74 Not possible ATM, see dotnet/efcore#11488. You'll need to use Custom SQL. |
Is |
@frankyjuang Good timing! @neonVoice is just getting PR #1056 ready to be merged. Should be part of |
Nice! But too bad. I planed to use it on Chinese data. Just realised the support of Chinese fts is pretty poor. |
@frankyjuang Yeah, I am not proficient in Chinese, but in Japanese, which (naturally) has similar word boundary problems. I suspect that the boolean mode should work, but I haven't given it a try. Also take a look at 12.9.8 ngram Full-Text Parser, that is specifically directed at Chinese and Japanese support. |
@lauxjpn |
@ahnseunghae Do you mean support for the As a quick workaround, you could use a command interceptor and just modify the statement, or run a manual |
Is this now available? I see that is merged and according to integration tests I should be able to use it as |
Try |
Thank you, works great! |
Does Pomelo EF Core provide a way of utilising a full text index using the
MATCH...AGAINST
syntax?I can see there's a
ForMySqlIsFullText()
extension on the index builder but I can't find an explanation of how to actually query using this index.The text was updated successfully, but these errors were encountered: