org.hswebframework.ezorm.core.dsl.Query.list()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(154)

本文整理了Java中org.hswebframework.ezorm.core.dsl.Query.list方法的一些代码示例,展示了Query.list的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.list方法的具体详情如下:
包路径:org.hswebframework.ezorm.core.dsl.Query
类名称:Query
方法名:list

Query.list介绍

暂无

代码示例

代码示例来源:origin: hs-web/hsweb-framework

@Override
public List<RoleEntity> getUserRole(String userId) {
  Assert.hasLength(userId, "参数不能为空");
  List<UserRoleEntity> roleEntities = userRoleDao.selectByUserId(userId);
  if (roleEntities.isEmpty()) {
    return new ArrayList<>();
  }
  List<String> roleIdList = roleEntities.stream().map(UserRoleEntity::getRoleId).collect(Collectors.toList());
  return DefaultDSLQueryService
      .createQuery(roleDao).where()
      .in(GenericEntity.id, roleIdList)
      .noPaging()
      .list();
}

代码示例来源:origin: hs-web/hsweb-framework

@Override
default List<E> select() {
  return createQuery().noPaging().list();
}

代码示例来源:origin: hs-web/hsweb-easy-orm

public List<T> list() {
  return proxy.list();
}

代码示例来源:origin: hs-web/hsweb-easy-orm

public List<T> list(int pageIndex, int pageSize) {
  return proxy.list(pageIndex, pageSize);
}

代码示例来源:origin: hs-web/hsweb-easy-orm

public List<T> list(int pageIndex, int pageSize, int total) {
  return proxy.list(pageIndex, pageSize, total);
}

代码示例来源:origin: hs-web/hsweb-easy-orm

public List<T> listNoPaging() {
  return noPaging().list();
}

代码示例来源:origin: hs-web/hsweb-easy-orm

public <R> List<R> list(Query.ListExecutor<R, Q> executor) {
  return proxy.noPaging().list(executor);
}

代码示例来源:origin: hs-web/hsweb-easy-orm

public List<T> listNoPaging() {
  return proxy.noPaging().list();
}

代码示例来源:origin: org.hswebframework.web/hsweb-commons-service-simple

@Override
default List<E> select() {
  return createQuery().noPaging().list();
}

相关文章