2.LambdaQueryWrapper :与QueryWrapper查询类似,不过使⽤的是Lambda语法。举例如下:
package;
import Data;
自然生态平衡@Data
public class Comment {
private Long id;街舞英文
public Result commentsByArticleId(Long id){
LambdaQueryWrapper<Comment> queryWrapper =new LambdaQueryWrapper<>(); queryWrapper.eq(Comment::getArticleId, id);
// 1. 其中Comment::getArticleId的意思就相当于:
// 1.1 实例化⼀个Comment对象
纯原和正品的区别
经典老歌下载// Comment comment = new comment;
欠条
// 1.2 调⽤对象Comment的get⽅法,这⾥调⽤的是getArticleId:
板栗鸡的做法
《读者》在线阅读// ArticleId();
// 2.eq⽅法相当于赋值“=”
// 即将ArticleId的值为参数id,注意此时使⽤的是get⽅法⽽不是t⽅法
queryWrapper.eq(Comment::getLevel,1);
List<Comment> comments = commentMapper.lectList(queryWrapper);
红薯糯米饼的做法List<CommentVo> commentVoList =copyList(comments);
return Result.success(commentVoList);
}