I am trying to implement a fulltext search on two columns which I created a view for: VendorName, ProductName. I have the full text index etc working but the actual query is
In earlier versions of SQL Server, the queries matched across multiple columns.
SQL Server
However, this was considered a bug.
To match across multiple columns, you should concatenate them in a computed column and create an index over that column.