Full-text search support (EF10)

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Unresolved
    • Priority: Major - P3
    • None
    • Affects Version/s: None
    • None
    • None
    • Dotnet Drivers
    • None
    • None
    • None
    • None
    • None
    • None

      Full-text search is now supported in EF10 using the fluent API for configuration:

      .EnableFullTextSearch() // on properties
      .IsFullTextIndex() // on indexes

      and then can be searched with

      .Where(x => EF.Functions.FullTextCpontains(x.Property, "sometext")

      It also supports FullTextContainsAll, FullTextContainsAny and FullTextScore.

      https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-10.0/whatsnew

            Assignee:
            Unassigned
            Reporter:
            Damien Guard
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: