数据库如何实现需要来自2个实体的列的项目

问题描述 投票:0回答:1

我已经用Room和MVVM创建了数据库,但是我遇到了一个问题,希望您能帮助我解决这个问题。

我有一个包含3个实体PlayerGroupStandings的数据库,其中排名是PlayerGroup之间的关系。事情是我想展示位置,但是Standings仅包含GroupPlayer的ID,并且我希望它也显示Player中的玩家名称,使用LiveDataadaptersViewModels,因此当我返回要观察的LiveData<List<Standings>>列表时,它不包含播放器的名称。

有人知道我也可以通过这个名字吗?

我唯一想到的解决方案是创建一个新的类,该类具有一个Standing和名称(字符串)作为实例,然后将其返回以进行观察。

但是感觉不自然,所以我想我可以在这里找到一个更好,更优雅的解决方案。

     groupStandingsViewModel = ViewModelProviders.of(this, new GroupStandingsViewModelFactory(this.getApplication(), 0)).get(GroupStandingsViewModel.class);
    groupStandingsViewModel.getAllStandings().observe(this, new Observer<List<Standings>>() {
        @Override
        public void onChanged(List<Standings> standings) {
            adapter.setStanding(standings);
        }
    });

我希望能够同时具有观察者的onChanged功能中给出的排名和名称。

android android-recyclerview android-room dao android-livedata
1个回答
0
投票

我唯一想到的解决方案是创建一个新的类,有一个Standing和名称(字符串)作为实例,然后返回观察。

但是感觉并不自然,所以我认为我可以在这里找到更好的选择,更优雅的解决方案。

听起来不自然,但是您需要一些新代码,还有什么? (附言说)。

我建议您上一门新课,但类似:-

public class PlayerGroupStanding {

    @Embedded
    Standings standing;
    String playerName;
    long playerId;
    String groupName;
    long groupId;

    public PlayerGroupStanding() {
    }

    public Standings getStanding() {
        return standing;
    }

    public void setStanding(Standings standing) {
        this.standing = standing;
    }

    public long getPlayerId() {
        return playerId;
    }

    public void setPlayerId(long playerId) {
        this.playerId = playerId;
    }

    public String getPlayerName() {
        return playerName;
    }

    public void setPlayerName(String playerName) {
        this.playerName = playerName;
    }

    public long getGroupId() {
        return groupId;
    }

    public void setGroupId(long groupId) {
        this.groupId = groupId;
    }

    public String getGroupName() {
        return groupName;
    }

    public void setGroupname(String groupname) {
        this.groupName = groupname;
    }
}

这可以与Dao Query结合使用:-

@Query("SELECT * FROM standings JOIN player ON mapToPlayer = playerId JOIN `group` ON mapToGroup = groupId")
List<PlayerGroupStanding> getAllStandingsWithPlayerAndGroupDetails();
  • 注意,尽管给定名称应该是自写的,但上面对名称进行了许多假设。
  • 请注意,变量名称例如playerName应该与查询返回的列名匹配。

附加

重新评论

SELECT在查询中返回的对象是什么。我知道,如果我使用SELECT *,则该对象将属于FROM中的类。但是当我返回列时,在LiveData>中需要提及的对象是什么?如果在哪里可以找到有关它的信息?提前非常感谢您:D

SELECT实际上返回一个游标,它是注释,然后编写代码,根据类的成员名称根据映射列的方法的定义提取列以返回对象,如果存在其他列,则将其忽略。 @Query根据该方法返回的类型后,FROM子句无法确定该方法返回的结果对象是否返回该方法。

例如,在项目的生成代码中构建(Ctrl + F9)后可以找到实际代码

enter image description here

因此,对于上面的示例,在Dao的代码(即_impl后缀为Dao的代码)中生成的相应方法是:-

@Override
  public List<PlayerGroupStandings> getAllPlayerGroupStandings() {
    final String _sql = "SELECT * FROM standings JOIN player ON mapToPlayer = playerId JOIN `group` ON mapToGroup = groupId";
    final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
    __db.assertNotSuspendingTransaction();
    final Cursor _cursor = DBUtil.query(__db, _statement, true, null);
    try {
      final int _cursorIndexOfMapToPlayer = CursorUtil.getColumnIndexOrThrow(_cursor, "mapToPlayer");
      final int _cursorIndexOfMapToGroup = CursorUtil.getColumnIndexOrThrow(_cursor, "mapToGroup");
      final LongSparseArray<ArrayList<Player>> _collectionPlayers = new LongSparseArray<ArrayList<Player>>();
      final LongSparseArray<ArrayList<Group>> _collectionGroup = new LongSparseArray<ArrayList<Group>>();
      while (_cursor.moveToNext()) {
        if (!_cursor.isNull(_cursorIndexOfMapToPlayer)) {
          final long _tmpKey = _cursor.getLong(_cursorIndexOfMapToPlayer);
          ArrayList<Player> _tmpPlayersCollection = _collectionPlayers.get(_tmpKey);
          if (_tmpPlayersCollection == null) {
            _tmpPlayersCollection = new ArrayList<Player>();
            _collectionPlayers.put(_tmpKey, _tmpPlayersCollection);
          }
        }
        if (!_cursor.isNull(_cursorIndexOfMapToGroup)) {
          final long _tmpKey_1 = _cursor.getLong(_cursorIndexOfMapToGroup);
          ArrayList<Group> _tmpGroupCollection = _collectionGroup.get(_tmpKey_1);
          if (_tmpGroupCollection == null) {
            _tmpGroupCollection = new ArrayList<Group>();
            _collectionGroup.put(_tmpKey_1, _tmpGroupCollection);
          }
        }
      }
      _cursor.moveToPosition(-1);
      __fetchRelationshipplayerAsarmAndroidroommigrationsPlayer(_collectionPlayers);
      __fetchRelationshipgroupAsarmAndroidroommigrationsGroup(_collectionGroup);
      final List<PlayerGroupStandings> _result = new ArrayList<PlayerGroupStandings>(_cursor.getCount());
      while(_cursor.moveToNext()) {
        final PlayerGroupStandings _item;
        final Standings _tmpStandings;
        if (! (_cursor.isNull(_cursorIndexOfMapToPlayer) && _cursor.isNull(_cursorIndexOfMapToGroup))) {
          _tmpStandings = new Standings();
          final Long _tmpMapToPlayer;
          _tmpMapToPlayer = _cursor.getLong(_cursorIndexOfMapToPlayer);
          _tmpStandings.setMapToPlayer(_tmpMapToPlayer);
          final Long _tmpMapToGroup;
          _tmpMapToGroup = _cursor.getLong(_cursorIndexOfMapToGroup);
          _tmpStandings.setMapToGroup(_tmpMapToGroup);
        }  else  {
          _tmpStandings = null;
        }
        ArrayList<Player> _tmpPlayersCollection_1 = null;
        if (!_cursor.isNull(_cursorIndexOfMapToPlayer)) {
          final long _tmpKey_2 = _cursor.getLong(_cursorIndexOfMapToPlayer);
          _tmpPlayersCollection_1 = _collectionPlayers.get(_tmpKey_2);
        }
        if (_tmpPlayersCollection_1 == null) {
          _tmpPlayersCollection_1 = new ArrayList<Player>();
        }
        ArrayList<Group> _tmpGroupCollection_1 = null;
        if (!_cursor.isNull(_cursorIndexOfMapToGroup)) {
          final long _tmpKey_3 = _cursor.getLong(_cursorIndexOfMapToGroup);
          _tmpGroupCollection_1 = _collectionGroup.get(_tmpKey_3);
        }
        if (_tmpGroupCollection_1 == null) {
          _tmpGroupCollection_1 = new ArrayList<Group>();
        }
        _item = new PlayerGroupStandings();
        _item.standings = _tmpStandings;
        _item.players = _tmpPlayersCollection_1;
        _item.group = _tmpGroupCollection_1;
        _result.add(_item);
      }
      return _result;
    } finally {
      _cursor.close();
      _statement.release();
    }
  }
© www.soinside.com 2019 - 2024. All rights reserved.