我有一个抽象类A
public abctract class A{}
和2实施B和C类
public class B extends A{
private String bProperty;
private String b2Property;
}
public class C extends A{
private String cProperty;
}
数据库与 bProperty , b2Property 和 cProperty 之间没有任何关系,但在我的网格中,他们需要在同一列(连接B)。 在我的网格中还有更多我需要的分页,例如。每页25个结果。
要实现我需要按以下顺序对实体进行排序 bProperty , cProperty , b2Property 。
有没有办法为A类创建条件,并且仍然能够根据提到的字段定义排序并避免org.hibernate.QueryException:无法解析属性:bProperty of:A?