(快速参考)

getAll

目的

为指定 ID 检索域类的实例的 List,按原始 ID 列表排序。如果某些提供的 ID 为 null 或这些 ID 没有实例,则结果 List 在这些位置会有 null 值。

示例

// get a list which contains Book instances with ids 2, 1, 3 respectively
def bookList = Book.getAll(2, 1, 3)

// can take a list of ids as only argument, very
// useful when the ids list is calculated in code
def bookList = Book.getAll([1, 2, 3])

// when called without arguments returns list of all objects
def bookList = Book.getAll()

描述

参数

  • varargs* - 可变参数 ID 列表

  • ids* - ID 列表