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) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public abstract string Where { get; set; }
Visual Basic
Public MustOverride Property Where As String
	Get
	Set
Visual C++
public:
virtual property String^ Where {
	String^ get () abstract;
	void set (String^ value) abstract;
}

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