本文整理了Java中io.ebean.Query.setProfileId
方法的一些代码示例,展示了Query.setProfileId
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setProfileId
方法的具体详情如下:
包路径:io.ebean.Query
类名称:Query
方法名:setProfileId
[英]Set an id to identify this query for profiling purposes.
The profileId is expected to be unique for a given bean type.
Note that the profileId is treated as a short internally and has a MAX value of 32,767.
[中]设置id以标识此查询,以便进行分析。
对于给定的bean类型,profileId应该是唯一的。
请注意,profileId在内部被视为短代码,最大值为32767。
代码示例来源:origin: org.actframework/act-ebean2
@Override
public EbeanQuery<MODEL_TYPE> setProfileId(int i) {
q.setProfileId(i);
return this;
}
代码示例来源:origin: org.actframework/act-ebean
@Override
public EbeanQuery<MODEL_TYPE> setProfileId(int i) {
q.setProfileId(i);
qReadOnly.setProfileId(i);
return this;
}
内容来源于网络,如有侵权,请联系作者删除!