There is a new enhancement in my project, i need to add a new textbox filter in which i have to allow multiple values to be entered.
obviously i am using "like" for a single valued parameter in my current procedure.
WHERE (@_adFirstName IS NULL OR firstName LIKE @_adFirstName + '%')
AND (@_adLastName IS NULL OR lastName LIKE @_adLastName + '%')
later i need to use "IN" for multiple values. what will be the impact of performane of procedure in this scenario.