外键和与亚音速简单存储库的一对多关系
我在 SubSonic 3.0.0.3 中使用 SimpleRepository
,并创建了带有订单的经典示例,其中包含订单行集合:
public class Order
{
...
public IList<OrderLine> OrderLines { get; set; }
...
}
但是,当通过存储库保存此订单时(使用迁移) ,OrderLines
属性将被忽略。
有可能以任何方式实现这一目标吗?
I'm using the SimpleRepository
in SubSonic 3.0.0.3, and have created the classical example with an order, which contains a collection of order lines:
public class Order
{
...
public IList<OrderLine> OrderLines { get; set; }
...
}
However, when saving this one through the repository (using migrations), the OrderLines
property is ignored.
Is it possible to achieve this in any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使您使用的是简单存储库,也有一个用于管理外键的简单选项。查看这篇文章了解细节。
There's a simple option for managing foreign keys, even if you're using the Simple Repo. Check out this post for the details.