数据库模型 - 通过 2 个服务接口在同一实体上进行 CRUD
我的应用程序模型有一个特定的实体,我将使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保至少将数据访问(存储库)与服务分开,另一种方法是创建一个数据服务(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.
这不是什么大问题。它实际上是“共享数据库”集成模式。
您应该注意的事情是:
This is not a big problem. It is actually the "Shared database" integration pattern.
The things you should watch out for are: