我在多个表之间使用连接。我只想从一个表中检索列。我尝试过这样的事情但没有成功。
ProjectionList projectionList = Projections.projectionList();
projectionList.add(Projections.property("b.*"));
得到这个例外,
could not resolve property: * of: MyClassName
我在多个表之间使用连接。我只想从一个表中检索列。我尝试过这样的事情但没有成功。
ProjectionList projectionList = Projections.projectionList();
projectionList.add(Projections.property("b.*"));
得到这个例外,
could not resolve property: * of: MyClassName