Symfony Filter not working
问题 My schema: Poster: actAs: Timestampable: ~ Sluggable: fields:[name] columns: id: type: integer(4) autoincrement: true primary: true name: type: string(255) notnull: true filename: type: string(255) notnull: true approved: type: boolean(1) default: false start_date: type: date notnull: true end_date: type: date notnull: true user_id: type: integer(20) default: 1 attributes: export: all validate: true relations: User: class: sfGuardUser local: user_id foreign: id type: one foreignType: many