实体数据模型中的外键
我使用实体数据模型,但我有一个问题:如果一个表,例如客户有categoryId(来自表类别的外键),它不会出现在客户实体中??? 那么我怎样才能检索或设置这个值呢?
I use Entity Data Model but I have aproblem: If a table e.g Customers have categoryId(foreign key from table category) it is not appear in cutomers entity????
so how can i retrive this value or set it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
实体框架本身会渲染实际属性,它将创建类型类别的属性。
即:
Customer.Category = new Category()
实体框架将在内部处理引用/外键。
The Entity Framework does render the actual property itself, it will create an property of Type Category.
i.e.:
Customer.Category = new Category()
The Entity Framework will handle the references / foreign keys internally.