Locate the property-indices of all properties considered to be dirty.
Namespace: NHibernate.Persister.EntityAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
C# |
---|
int[] FindModified( Object[] old, Object[] current, Object entity, ISessionImplementor session ) |
Visual Basic |
---|
Function FindModified ( _ old As Object(), _ current As Object(), _ entity As Object, _ session As ISessionImplementor _ ) As Integer() |
Visual C++ |
---|
array<int>^ FindModified( array<Object^>^ old, array<Object^>^ current, Object^ entity, ISessionImplementor^ session ) |
Parameters
- old
- Type: array<System..::..Object>[]()[][]
The old state of the entity.
- current
- Type: array<System..::..Object>[]()[][]
The current state of the entity.
- entity
- Type: System..::..Object
The entity for which we are checking state modification.
- session
- Type: NHibernate.Engine..::..ISessionImplementor
The session in which the check is ccurring.