When we use SqlCommand with a set of parameters, they are being executed as a parametrized query.
You may or may not pass the desired type with each SqlParameter. If you do not specify desired database
type it will be determined by the ADO provider, but you will not know what the actual SQL type is.
Below I provide a code that will give you the actual parameters.
This code can also help you find out what the actual SQL query executed in the database is.