我有两个实体类
class User {
Integer userId;
String userName;
UserType userType;
}
和
class UserType {
Integer typeId;
String type;
Set<User> userList;
}
如何通过 HQL 更新查询new UserType()
在所有user.userType
位置进行设置?user.userType=null
我是冬眠新手。