Does this Driver require the use of the Named Prefix when trying
to reference the Parameter in the Command's Parameter collection.
Namespace: NHibernate.DriverAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
Remarks
This is really only useful when the UseNamedPrefixInSql == true. When this is true the
code will look like:
CopyC#
if this is false the code will be
CopyC#.
![](../icons/CopyCode.gif)
IDbParameter param = cmd.Parameters["@paramName"]
![](../icons/CopyCode.gif)
IDbParameter param = cmd.Parameters["paramName"]