Hey fellow programmers,
I'm wondering if there is anyway to use doctrine's magic method to look for null values. For instance:
Doctrine::getTable('myClass')->findByDeletedAt(null);
Essentially, i want to return all records that are not deleted. I've tried the above, but it doesn't seem to work.
Any ideas?