Working with the latest stable version of MiniProfiler (3.2) I am having an issue where the parameters list for the Command is empty. The SQL of the command is printing out fine through MiniProfiler but the parameters are not actually being removed.
The output of the SQL (as an example) is showing and I believe executing as follows:
Select person_ID, first_NME, last_NME from Customer where customer_Id = @p0
when the query executes I am getting an error that states: Must declare the scalar variable "@p0
I am able to debug and look at the DBCommand for miniProfiler and it does not have anything in the parameter lists.
Has anyone come across this before? I have already tried setting the SQLFormatter but I don't think that is helping because i don't have any parameters.