I am new to SQL Server Full Text Searching, and am trying to figure out the best way to search on multiple words using the inflectional engine so the search uses the various forms of all of the words.
With Django models, I want to achieve this: class Foo(models.Model): name = models.CharField(max_length=50)
Is the following SQL susceptible to SQL injection via the @SearchWord parameter? I want to use parameters with the FormsOf function, but the only guide to doing so I\'ve found is in this Sta开发者_如