Copy all properties to a given IDetachedQuery.

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

Syntax

C#
void CopyTo(
	IDetachedQuery destination
)
Visual Basic
Sub CopyTo ( _
	destination As IDetachedQuery _
)
Visual C++
void CopyTo(
	IDetachedQuery^ destination
)

Parameters

destination
Type: NHibernate..::..IDetachedQuery
The given IDetachedQuery.

Remarks

Usually the implementation use IDetachedQuery to set properties to the destination. This mean that existing properties are merged/overriden.

See Also