1. Invalid Column Index or Missing IN/OUT parameter with Filter forum.hibernate.orglatha1119 wrote: can you post the code. your UI code and the Filter enabling at the DAO level? I'm sure you did a sanity check but still did you put a debugger and have seen the entries in the collection object that you are setting on the Filter? filter is enabled via: Code: public void enableJudgeNoteFilter(Session session) { ... |
2. Hibernate Filter and duplicate column error forum.hibernate.org@FilterDef(name = "tenantFilter", defaultCondition = "_tenantId = :tenantId", parameters = @ParamDef(name = "tenantId", type = "long")) @Filter(name = "tenantFilter") @MappedSuperclass public class TenantEntity extends BaseEntity { ... private Tenant tenant; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "_tenantId") ... |
3. Column level filter forum.hibernate.org |
4. Apply filters to columns in different tables forum.hibernate.orgHi, The documentation is clear when applying a filter that affects a column of an entity but what about a column in another table joined by an FK? Imagine (pseudo-sql): TABLE A ( ID INTEGER, CONDITION INTEGER) TABLE B ( ID INTEGER, DATA VARCHAR(100), FKA INTEGER) FOREIGN KEY FKA REFERENCES A(ID) Can I apply a filter on B whose condition references ... |
5. Filter conditions and property / column names. forum.hibernate.org |