外键和与亚音速简单存储库的一对多关系

发布于 2024-08-03 17:50:08 字数 285 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无远思近则忧 2024-08-10 17:50:08

即使您使用的是简单存储库,也有一个用于管理外键的简单选项。查看这篇文章了解细节。

There's a simple option for managing foreign keys, even if you're using the Simple Repo. Check out this post for the details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文