MonoSoftware.MonoX.DAL.EntityClasses.SnRelationshipEntity.DesetupSyncSnNote C# (CSharp) Méthode

DesetupSyncSnNote() private méthode

Removes the sync logic for member _snNote
private DesetupSyncSnNote ( bool signalRelatedEntity, bool resetFKFields ) : void
signalRelatedEntity bool If set to true, it will call the related entity's UnsetRelatedEntity method
resetFKFields bool if set to true it will also reset the FK fields pointing to the related entity
Résultat void
        private void DesetupSyncSnNote(bool signalRelatedEntity, bool resetFKFields)
        {
            this.PerformDesetupSyncRelatedEntity( _snNote, new PropertyChangedEventHandler( OnSnNotePropertyChanged ), "SnNote", MonoSoftware.MonoX.DAL.RelationClasses.StaticSnRelationshipRelations.SnNoteEntityUsingNoteIdStatic, true, signalRelatedEntity, "SnRelationships", resetFKFields, new int[] { (int)SnRelationshipFieldIndex.NoteId } );
            _snNote = null;
        }
SnRelationshipEntity