When implemented by a class, gets or sets the sql string that should be a part of the where clause.

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

Syntax

Visual Basic (Declaration)
Public MustOverride Property Where As String
C#
public abstract string Where { get; set; }
Visual C++
public:
virtual property String^ Where {
	String^ get () abstract;
	void set (String^ value) abstract;
}
JavaScript
function get_where();
function set_where(value);

Field Value

The sql string that should be a part of the where clause.

Remarks

The value of this is set by the where attribute.

See Also