我是靠谱客的博主 认真含羞草,最近开发中收集的这篇文章主要介绍mybatis-plus中and和or的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、a and b形式

直接使用追加形式,比如连续的eq

2、a or b形式

使用or()来连接两个操作,使用的是Join接口中的or,比如eq(Test::getA, 1).or().eq(Test::getB, 2)

3、a or (b and c)形式

使用or(Consumer<Wrapper> consumer)形式,使用的是Nested接口中的or。比如eq(Test::getA, 1).or(w -> w.eq(Test::getB, 2).eq(Test::getC, 3)

4、(a and b) or (c and d)形式

使用and(Consumer<Wrapper> consumer).or(Consumer<Wrapper> consumer)形式,比如and(wp -> wp.eq(Test::getA, 1).eq(Test::getB,2)).or(wp -> wp.eq(Test::getC, 3).eq(Test::getD, 4)

5、a or (b and ( c or d))

使用and(wp.a()).or(wp -> wp.b(....).and(wp -> wp.c().or().wp.d())

最后

以上就是认真含羞草为你收集整理的mybatis-plus中and和or的使用的全部内容,希望文章能够帮你解决mybatis-plus中and和or的使用所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部