tags:

views:

14

answers:

0

My question is very close to this one http://stackoverflow.com/questions/1471986/how-do-i-detach-a-behavior-in-symfony-doctrine

I have a model with several behaviors, one of which I need to ignore for a single query.

I have a UserModel with attached behaviors for

  • SoftDelete
  • Deactivatable (custom)
  • Timestampable

In a very specific case I need to ignore the Deactivated behavior while retaining the functionality of the others. Is this possible?