Re-read the state of the given instance from the underlying database, with the given LockMode.

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

Syntax

C#
void Refresh(
	Object obj,
	LockMode lockMode
)
Visual Basic
Sub Refresh ( _
	obj As Object, _
	lockMode As LockMode _
)
Visual C++
void Refresh(
	Object^ obj, 
	LockMode^ lockMode
)

Parameters

obj
Type: System..::..Object
a persistent or transient instance
lockMode
Type: NHibernate..::..LockMode
the lock mode to use

Remarks

It is inadvisable to use this to implement long-running sessions that span many business tasks. This method is, however, useful in certain special circumstances.

See Also