如何用ModelMapper映射一些条件?

发布于 2025-01-23 09:16:12 字数 612 浏览 0 评论 0 原文

我有一些我想在 gamedto 中映射的 game 实体。在游戏中,我有另一个 game field 基于。在 gamedto 中,我有基于基础名称 astemID astemoncheckbox fields。

如果 game 具有 asedon!= null 或在gamedto baseed> asedonname/id!= null 基于code>基于code>基于 true true true /代码>?

现在我的此操作代码:

if(gameDto.getBaseOnName() != null) {
      gameDto.setBaseOnCheckBox(true);
  }

我是usind modelmapper v.3.1.0

I have some Game entity that I want to map in GameDto. In Game I have another Game field basedOn. In GameDto I have basedOnName, basedOnId and basedOnCheckBox fields.

Can I somehow map basedOnCheckBox to true in case of Game has basedOn != null or in GameDto basedOnName/Id != null?

Now my code for this operation:

if(gameDto.getBaseOnName() != null) {
      gameDto.setBaseOnCheckBox(true);
  }

I'm usind modelMapper v.3.1.0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煞人兵器 2025-01-30 09:16:12

看起来找到了一个答案:

Converter<Game, Boolean> notNullFieldToBoolean = c -> c.getSource() != null;
...
mapper.using(notNullFieldToBoolean).map(Game::getBaseOn, GameDto::setBaseOnCheckBox);
...

Looks like found an answer how to do it:

Converter<Game, Boolean> notNullFieldToBoolean = c -> c.getSource() != null;
...
mapper.using(notNullFieldToBoolean).map(Game::getBaseOn, GameDto::setBaseOnCheckBox);
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文