0
在這行代碼下面的代碼。從(20).fetch(10),是什麼在發揮框架
List<User> users = User.find("byEmailLike", "[email protected]%") .from(20).fetch(10);
什麼.from(20).fetch(10)
?
在這行代碼下面的代碼。從(20).fetch(10),是什麼在發揮框架
List<User> users = User.find("byEmailLike", "[email protected]%") .from(20).fetch(10);
什麼.from(20).fetch(10)
?
它很直觀的使用:取10條記錄,從20
而且它在文檔描述的開始,你應該看看there
List<Post> posts = Post.all().from(50).fetch(100); // 100 max posts start at 50