Is this assumption still true for fast serialization?
3) One of the assumptions the fast serializer makes is that entities and collections by and large do not have circular references. ie A Collection 'owns' all of its entities and they in turn 'own' any collections/entities stored in their properties. Do you see any problems with this?
I have a circular reference [A->B->C->A] that is not being serialized/deserialized properly using the FastSerializer. If I turn off FastSerialization everything works fine...
I am using OrmSupportClasses 2.6.9.511 in an Adapter project.
EDIT: To clarify, my situation is:
AEntity 1:N BEntity M:1 AEntity (so BEntity is a many to many entity between instances of AEntity)
the references are like:
AEntity1-->BEntity1-->AEntity2-->BEntity2-->AEntity3-->BEntity3-->AEntity1
When I use normal binary serialization using the FastSerializer, the last link to AEntity1 is not present, although the foreign key is still set correctly.