-1

How to enable full-text search feature in SQL Server for .NET Aspire?

var sqlServer = builder.AddSqlServer("sqlServer", builder.AddParameter("password123!!!", true))
.WithLifetime(ContainerLifetime.Persistent);

I'm getting an error while seeding:

An error occurred seeding the audit DB. Full-Text Search is not installed, or a full-text component cannot be loaded.
Microsoft.Data.SqlClient.SqlException (0x80131904): Full-Text Search is not installed, or a full-text component cannot be loaded.

2
  • 2
    Since it clearly says full-text search is not installed - just do install the full-text search feature for SQL Server ?? It is an optional feature which you must specifically choose to install, when you want to use it ... Commented Oct 26 at 8:53
  • 1
    How would you add FTS to mcr.microsoft.com/mssql/server? By creating a custom Dockerfile. Have you looked into the AddDockerfile or WithDockerfile builder methods yet? Commented Oct 26 at 9:57

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.