如何用ModelMapper映射一些条件?
我有一些我想在 gamedto
中映射的 game 实体。在游戏
中,我有另一个 game
field 基于
。在 gamedto
中,我有基于基础名称
, astemID
和 astemoncheckbox
fields。
如果 game
具有 asedon!= null
或在gamedto
baseed> asedonname/id!= null
true true true /代码>?
现在我的此操作代码:
if(gameDto.getBaseOnName() != null) {
gameDto.setBaseOnCheckBox(true);
}
我是usind modelmapper v.3.1.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来找到了一个答案:
Looks like found an answer how to do it: