数据库模型 - 通过 2 个服务接口在同一实体上进行 CRUD

发布于 2024-12-09 12:17:20 字数 190 浏览 0 评论 0原文

我的应用程序模型有一个特定的实体,我将使用 2 个不同的服务接口在同一个实体上应用 CRUD,

同时这 2 个接口将在数据库模型上工作,我遇到了这个大设计问题稍后会给我带来麻烦,

这样做会遇到什么问题,

是否会出现任何维护问题?

使用 2 个接口在同一业务实体上执行相同的 CRUD 在架构上是否正确?

My application Model is having a particular Entity and i'm going to apply CRUD on that same Entity using 2 different service interfaces,

At the same time those 2 interfaces will work on the DB model ,I'm having this BIG design issue that this will get me in to trouble later,

What are the problems i'm going to face by doing so,

Are there any maintenance issues arise?

Is it architecturally correct to use 2 interfaces to doing the same CRUD on same business Entity?

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

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

发布评论

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

评论(2

開玄 2024-12-16 12:17:21

确保至少将数据访问(存储库)与服务分开,另一种方法是创建一个数据服务(CRUD 服务),然后在其之上创建任何服务。

Make sure at least to separate the data access (repositories) from the services, one other way is to create one data service (CRUD service), then create whatever services on top of it.

远昼 2024-12-16 12:17:20

这不是什么大问题。它实际上是“共享数据库”集成模式。

您应该注意的事情是:

  • 它会增加您的维护成本,因为您需要同时更新和部署使用这些接口的服务。
  • 您需要小心,不要引入任何锁定问题,因为您是从两个不同的方向访问数据表。

This is not a big problem. It is actually the "Shared database" integration pattern.

The things you should watch out for are:

  • It will increase your maintenence costs since you will need to update and deploy the services that use these interfaces at the same time.
  • You need to be carefull that you do not introduce any locking problems, since you are accessing the data tables from 2 different directions.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文