Build an appropriate Setter for the given property.

Namespace: NHibernate.Tuple.Entity
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
protected abstract ISetter BuildPropertySetter(
	Property mappedProperty,
	PersistentClass mappedEntity
)
Visual Basic
Protected MustOverride Function BuildPropertySetter ( _
	mappedProperty As Property, _
	mappedEntity As PersistentClass _
) As ISetter
Visual C++
protected:
virtual ISetter^ BuildPropertySetter(
	Property^ mappedProperty, 
	PersistentClass^ mappedEntity
) abstract

Parameters

mappedProperty
Type: NHibernate.Mapping..::..Property
The property to be accessed via the built Setter.
mappedEntity
Type: NHibernate.Mapping..::..PersistentClass
The entity information regarding the mapped entity owning this property.

Return Value

An appropriate Setter instance.

See Also