Does the current state of the list exactly match the snapshot?

Namespace:  NHibernate.Collection.Generic
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Function EqualsSnapshot ( _
	elementType As IType _
) As Boolean
C#
public override bool EqualsSnapshot(
	IType elementType
)
Visual C++
public:
virtual bool EqualsSnapshot(
	IType^ elementType
) override
JavaScript
function equalsSnapshot(elementType);

Parameters

elementType
Type: NHibernate.Type..::.IType
The IType to compare the elements of the Collection.

Return Value

trueTruetruetrue (True in Visual Basic) if the wrapped list is different than the snapshot of the list or if one of the elements in the collection is dirty.

Implements

IPersistentCollection..::.EqualsSnapshot(IType)

See Also