有没有办法向 ADO.NET 实体框架中的关联添加额外的字段?
我希望能够对多对多关系进行建模,其中包含有关该关系的额外详细信息。例如:
Person: int id, String name
Project: int id, String name
ProjectPerson: Person.id, Project.id, String role
每当我在 EF 中创建 ProjectPerson
关联时,我都无法将 role 属性添加到该关联中。如果我在数据库中创建表然后将其导入模型中,我会丢失额外的属性。
I would like to be able to model a many-to-many relationship that has extra details about the relationship. For example:
Person: int id, String name
Project: int id, String name
ProjectPerson: Person.id, Project.id, String role
Whenever I create the ProjectPerson
association in the EF, I am unable to add the role attribute to the association. If I create the tables in my DB and then import it into the model, I lose the extra properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是我相信答案是否定的。但是,如果您找到一种聪明的方法来处理这个问题,除了创建新的实体集之外。让我知道。
Unfortunately I believe the answer is no. But If you find a clever way to handle this, asside from creating a new Entity Set. Let me know.