假设我有一堂课
class MyClass implements Serializable{
int x;
int y;
String z;
}
这表示一个包含 x、y、z 和另一个名为 i 的列的表。
我试过这个查询
SELECT c.i from MyClass as c where c.gid= 1
这返回org.springframework.orm.hibernate3.HibernateQueryException: could not resolve property: i of MyClass.
那么如何使用 HQL 解决这个问题呢?