Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道构建数据库相关操作的标准方法是什么?因为文档中没有定义结构。
例如,有一个 repoclass 并且有同样为 getUsername 编写的函数吗?
就是这样。
您的模型仅包含实体骨架。与查询这些实体的数据相关的所有内容都必须位于存储库中。
来自食谱:
为了隔离、测试和重用这些查询,为您的实体创建一个自定义存储库类并在其中添加带有查询逻辑的方法是一个好主意。