automapper的example用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了automapper的example用法相关的知识,希望对你有一定的参考价值。
Example example = new Example(User.class); Example.Criteria criteria = example.createCriteria(); User u = new User(null,"陈乐乐",null); criteria.andEqualTo(u); criteria.andNotBetween("id",1,4); criteria.andBetween("id",13,13); List<User> users = userMapper.selectByExample(example);
criteria有很多方法,单表查询操作基本不需要手动写sql了
以上是关于automapper的example用法的主要内容,如果未能解决你的问题,请参考以下文章