Is the order of params important in NHibernate?
- by Blake Blackwell
If I have an int parameter followed by a string parameter in a sproc I get the following error:
Input string was not in the correct format
However, if I switch those parameters in the sproc than I get the result set I expect. Are params sorted by data type, or do I have to do anything special in my config file? I've included my code for…