我是靠谱客的博主 活泼蜗牛,最近开发中收集的这篇文章主要介绍Lambda简化条件语句(让代码更优雅),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. LambdaQueryWrapper  和  Wrappers.lambdaQuery (推荐使用)  条件查询

List<ProductInfoEntity> productInfoList = productInfoMapper.selectList(new LambdaQueryWrapper<ProductInfoEntity>()
.eq(ProductInfoEntity::getId, id)
.eq(ProductInfoEntity::getState, 1));
//官方推荐使用这个
List<ProductInfoEntity> productInfoList = this.baseMapper.selectList(Wrappers.lambdaQuery(ProductInfoEntity.class)
.eq(true, ProductInfoEntity::getId, id))
.eq(ProductInfoEntity::getState, 1));

2. LambdaQueryChainWrapper 链式条件查询


List<ProductInfoEntity> productInfoList = new LambdaQueryChainWrapper<>(productInfoMapper)
.eq(ProductInfoEntity::getId, id)
.eq(ProductInfoEntity::getState, 1)
.list();

3. LambdaUpdateWrapper  和  Wrappers.lambdaUpdate (推荐使用)  条件更新

 productInfoMapper.update(null, new LambdaUpdateWrapper<ProductInfoEntity>()
.set(ProductInfoEntity::getProductName,"哈哈哈哈哈")
.eq(ProductInfoEntity::getId, id));
//官方推荐使用这个
this.baseMapper.update(null,Wrappers.lambdaUpdate(ProductInfoEntity.class)
.set(ProductInfoEntity::getProductName,"哈哈哈哈哈")
.eq(ProductInfoEntity::getId, id));

4.lambdaUpdateChainWrapper 链式条件更新

new LambdaUpdateChainWrapper<>(productInfoMapper)
.set(ProductInfoEntity::getProductName,"哈哈哈哈哈")
.eq(ProductInfoEntity::getId, id)
.update();

最后

以上就是活泼蜗牛为你收集整理的Lambda简化条件语句(让代码更优雅)的全部内容,希望文章能够帮你解决Lambda简化条件语句(让代码更优雅)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部