LINQ2SQL、持久性无知和域模型
这里有没有人使用过LINQ to SQL来支持域的持久化 型号?
我不打算使用 LINQ2SQL 实体设计器,而只是使用普通的手动编码 XML 映射,并且目前遇到了障碍。
我尝试在我正在做的 DDD 示例中使用它,因为我的观众只知道 LINQ2SQL。
Has anyone here have used LINQ to SQL to support the persistence of domain
models?
I'm not planning to use the LINQ2SQL entity designer, just plain-old hand-coded XML mapping and I'm currently having roadblocks.
I'm attempting to use it in a DDD example I'm doing, since my audience only knows LINQ2SQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
POCO 可以进行映射,因此可以与 DataContext 一起使用。
但是,我发现映射有点泄漏。数据模型信息现在正在泄漏到域实体。考虑这个例子:
更糟糕的是我必须显式声明实体的属性以匹配数据模型的外键。我不必使用 NHibernate 来执行此操作。
有没有更好的方法可以在不显式写入属性及其到数据模型的映射的情况下执行此操作?
POCOs can be mapped so it can be used with a DataContext.
However, I find the mapping a bit leaky. Data model information is now leaking to the domain entity. Consider this example:
The worse part is that I have to explicitly declare properties on my entities to match the data model's foreign keys. I didn't have to do this with NHibernate.
Is there any better way to do this without explicitly writing properties and their mapping to the data model?