The SqlString to be called; implemented by all subclasses

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

Syntax

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

Remarks

The setter was added so that class inheriting from Loader could write a value using the Property instead of directly to the field.

The scope is protected internal because the WhereParser needs to be able to get the SqlString of the QueryTranslator when it is parsing a subquery.

See Also