如何在 Entity Framework 4 中映射值对象
我想在 Entity Framework 4 中映射一个值对象,就像在 NHibernate 中一样,我使用组件类(嵌套在 AR 中)。我该怎么做?
I want map a value object in Entity Framework 4 as in NHibernate where I use Component-Class (Nested in AR). How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知有两种方法。最简单的方法是使用 ComplexType,它不能有密钥。更困难的方法是使用 POCO,并将所有 setter 标记为私有 (示例)并带有一个键,这将允许您将其保存到单独的数据库表中。 (或者我想,你可以将两者混合起来,并用私人二传手来做前者。)
There are two ways that I know of. The easiest is to use ComplexType, which cannot have a key. The more difficult way is to use a POCO with all setters marked private (example) and with a key, which will allow you to persist it to a separate database table. (Or you can kinda mix to two and do the former with private setters, I suppose.)