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

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

Syntax

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

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