To refer to a named parameter within the SQL query text in a SqlCommand object, you would use the "@" symbol followed by the parameter name.
So the correct way to refer to the parameter named "CustomerName" in the SQL query text would be:
B. "@CustomerName"