我想在休眠中使用PropertySelector
,Example
但我没有在网上找到任何指导如何使用它的示例。
基本上我想做的是
Example example = Example.create(user);
PropertySelector propertySelector;
propertySelector.include(user, "emailId", org.hibernate.type.Type);
它给出了错误org.hibernate.type.Type cannot be resolved to a variable
,那么在第三个参数中使用什么?