I am attempting to use the OnFlushDirty
method of a Castle.ActiveRecord
object in order to implement generic auditing of changes:
protected override bool OnFlushDirty(object id,
IDictionary previousState,
IDictionary currentState,
NHibernate.Type.IType[] types
)
On execution, OnFlushDirty is passed a Castle.ActiveRecord.Framework.DictionaryAdapter
for each of the previousState
and currentState
parameters.
Unfortunately DictionaryAdapter
does not support the GetEnumerator()
method, throwing a NotSupportedException
.
DictionaryAdapter
to be passed into OnFlushDirty in the first place?; andDictionaryAdapter
in order to compare previous and current states for auditing?The DictionaryAdapter
includes a Key collection which can be enumerated normally with the Key then being applied to retrieve its Value.
Sample solution code:
foreach (var entry in currentState.Keys)
{
Console.WriteLine(currentState[entry]);
}