在实体框架中映射值类型集合
类似的问题:使用实体框架映射字符串集合或 Linq to SQL
我有一个角色类:
public class Role
{
public int RoleID { get; set; }
public virtual IList<string> Actions { get; set; }
}
我在数据库中有一个映射表“RoleActionMapping”,其中包含“RoleID”和“Action”列。 “RoleID”是指向 Role 表的外键,“Action”是 varchar。我似乎无法设置 EF 映射来使用 RoleActions 填充 Role 类。
关于如何实现这一目标有什么想法吗?谢谢!
Similar question: Mapping collection of strings with Entity Framework or Linq to SQL
I have a role class:
public class Role
{
public int RoleID { get; set; }
public virtual IList<string> Actions { get; set; }
}
I have a mapping table in the db, "RoleActionMapping" with the columns, "RoleID" and "Action". "RoleID" is a foreign key point to the Role table, and "Action" is a varchar. I cannot seem to setup my EF mapping to populate the Role class with the RoleActions.
Any ideas on how to achieve this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
EF 不提供此类映射。
如果您想映射它,则必须使用:
您可以进一步扩展
Role
类以提供返回IEnumerable
的未映射属性,该属性将从Actions 内部选择数据
属性。但是,一旦您遵循这种方法,您应该考虑将其建模为
Role
和Action
实体之间的 M:N 关系。EF doesn't offer such mapping.
If you want to map it you must use:
You can further extend
Role
class to provied not mapped property returningIEnumerable<string>
which will internally select data fromActions
property.But once you follow this approach you should consider model it as M:N relation between
Role
andAction
entity.