amatt13/BossFight

Friends list

开放

#20 创建于 2023年1月24日

 (0 条评论) (0 个反应) (0 位负责人)C# (1 个派生)auto 404
Back Endgood first issue

仓库指标

星标
 (1 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Create a SQL table that models the friendship relations

These columns will be needed

  • PlyerFriendshipRelationId
  • PlayerId
  • BefriendedPlayerId
  • CreationDate (when this row was created)

This relation will show what player's a given player has added to their friends list. The friendship is not necessarily mutual, as the player can add another without the other adding the first player.

The player should have a list of PlyerFriendshipRelations which will include all entries from the table where the PlyerId matches that of the player.

A new Object in the BE should also be created with the same names as the table uses. Remember to update Player.BuildObjectFromReader() such that the "foreach (var player in result)" also adds the new relations to their PlyerFriendshipRelations list.

贡献者指南