I am developing in C# MVC Visual studio using sql express. Running my application on localhost, then i push final app to production which runs sql server. I would like to know how do I add full-text indexing to my existing table:
CREATE FULLTEXT INDEX ON dbo.People
(
Title,
Authors,
Description
)
So this query above where do i run it on visual studio as I am using sql express?
How about migrations? Do I need to add anything to my model.cs class? And do I need to enable migrations add fulltext search?
I could do this easily in php/mysql, but i am learning c# mvc so I am not sure what is required.