I followed the directions in this SO question to create a linq function to do a full text search on a food database i have. there are over 7000 records in this DB and with each keyword i add the results get larger as opposed to smaller.
here is the meat of my function:
SELECT *
FROM USDA_Foods AS FT_TBL
INNER JOIN FREETEXTTABLE(USDA_Foods,
Shrt_Desc,
@searchWord) AS KEY_TBL
ON FT_TBL.foodId = KEY_TBL.[KEY]
How would i decrease the results with each new keyword by altering the code above?
Thanks