You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update docs for EF Core 11 full-text/vector API renames (#5315)
Update documentation to reflect API changes from dotnet/efcore#37993:
- SqlServerFullTextIndexBuilder: HasKeyIndex→UseKeyIndex, OnCatalog→UseCatalog,
WithChangeTracking→HasChangeTracking, HasLanguage→UseLanguage
- FreeTextTable/ContainsTable: columnSelector moved after search text (now optional)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The `HasKeyIndex()` method specifies the unique, non-nullable, single-column index used as the full-text key for the table (typically the primary key index). `OnCatalog()` assigns the full-text index to a specific catalog.
39
+
The `UseKeyIndex()` method specifies the unique, non-nullable, single-column index used as the full-text key for the table (typically the primary key index). `UseCatalog()` assigns the full-text index to a specific catalog.
40
40
41
41
You can also configure multiple columns and additional options such as per-column languages and change tracking:
0 commit comments