Does this Driver require the use of a Named Prefix in the SQL statement.

Namespace: NHibernate.Driver
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public abstract bool UseNamedPrefixInSql { get; }
Visual Basic
Public MustOverride ReadOnly Property UseNamedPrefixInSql As Boolean
	Get
Visual C++
public:
virtual property bool UseNamedPrefixInSql {
	bool get () abstract;
}

Remarks

For example, SqlClient requires select * from simple where simple_id = @simple_id If this is false, like with the OleDb provider, then it is assumed that the ? can be a placeholder for the parameter in the SQL statement.

See Also