数据网关模式和外键
这两个概念如何协同工作?
我有一个场景
目标
我的问题
问题
How are this two concepts work together ?
I have a scenario
Objective
My problem
but by doing so I make extra queries when they are not necessary (display just the a city info for example)
Question
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要关联的国家/地区名称,则应使用联接。只需添加另一个方法,例如
fetchWithCountry
。You should use a join if you need h associated country name. Simply add another method like
fetchWithCountry
.另一种选择是创建包含 CountryName 的城市表视图。然后让您的 DataGateway 使用视图进行选择并使用表进行保存。在您的域对象中,使 CountryName 字段成为哑只读字段。这种方法可能看起来像是一种肮脏的黑客行为,但它确实简化了事情。
Another option is to create a view of the city table that includes the CountryName. Then get your DataGateway to select using the view and save using the table. In your domain objects make the CountryName field a dumb read only field. This approach might seem like a dirty hack but it does simplfy things.