In SQL Server 2008 R2, I'm doing a full-text search for the term 'C#' like this:
SELECT *
FROM Book b
WHERE CONTAINS (b.title , 'c#')
However, the full text search looks like it strips out the pound sign and then performs the search.
If I do a wildcard "like" search, I get correct results:
SELECT *
FROM Book b
where title like '%c#%'
Is there a way to do a full-text CONTAINS
search for a term that contains a hash/pound sign?