Sql Server Full Text Search
Description
Important concepts
Configuration in DI
// using Sumeru.Flex; // IFlexSearchStore
public static class OtherApplicationServicesConfig
{
public static IServiceCollection AddOtherApplicationServices(
this IServiceCollection services,
IConfiguration configuration)
{
// Registers SQL Server full-text search as the IFlexSearchStore bridge.
// Flex auto-wires generated Queries/Plugins that *use* IFlexSearchStore.
services.AddFlexSqlServerSearchStore(configuration);
return services;
}
}appsettings.json
Examples (template-based)
Search a single document (Query)
SQL Server considerations
Last updated