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:
if this is false the code will be
.
CopyC#
IDbParameter param = cmd.Parameters["@paramName"]
CopyC#
IDbParameter param = cmd.Parameters["paramName"]