I have a model which represents a file, and I have a doctrine entity which represents a collection of files. I only want to store the unique filename in the database, as a relation to my file model, which is indexed by the unique filename/key stored in MogileFS.
How can I set up my doctrine 2 entity so that entitymanager will trigger a custom response to this field? (E.G use return value of function1 for save, and call function2 with argument returned from database on find, and trigger function3 for cascading delete)