向 DataContext db 添加新条目导致空引用

发布于 2024-10-19 06:19:25 字数 804 浏览 1 评论 0原文

我对 DataContext 有点陌生,但它应该仍然很简单。

我正在开发一个投标网站,其中有许多“产品”,每个产品都有许多“投标”。
我有 2 个表(在 .NET 中保存到 DataContext 模型):
BIDPRODUCT(以auctionID为主键)
BIDENTRY(以auctionID作为外键)
关系:投标产品 --> BIDENTRY

我正在尝试将 1 个带有 1 个链接双叉的产品添加到数据库,如下所示: (ListList 已预先填充)

        DBDataContext db = new DBDataContext();
        BidProduct p = Products.First();
        BidEntry b = Bids.Where(bi => bi.auctionId == p.auctionId).First();

        p.BidEntries.Add(b);

        db.BidProducts.InsertOnSubmit(p);
        db.SubmitChanges(); 

当调用 p.BidEntries.Add(b) 时,我得到一个BidEntries 上的空引用!? 如果我在 BidEntries 上尝试 a = new,我仍然得到空引用。

这是什么!?

I'm a bit new to DataContext but it should still be simple.

I am developing a bidding site where there are many "Products" with each products many "Bids".
I have 2 tables (persisted in .NET to a DataContext Model):
BIDPRODUCT (with auctionID as primary key)
BIDENTRY (with auctionID as foreign key)
RELATIONSHIP: BIDPRODUCT --> BIDENTRY

I am trying to add 1 product with 1 linked bidentry to the db as such:
(List<Products> and List<BidEntries> is pre-populated)

        DBDataContext db = new DBDataContext();
        BidProduct p = Products.First();
        BidEntry b = Bids.Where(bi => bi.auctionId == p.auctionId).First();

        p.BidEntries.Add(b);

        db.BidProducts.InsertOnSubmit(p);
        db.SubmitChanges(); 

When p.BidEntries.Add(b) is called I get a null reference on BidEntries!?
if I try a = new on BidEntries I still get a null reference.

What is this!?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

送你一个梦 2024-10-26 06:19:25

您是否已将 p.BidEntries 初始化为 List

该错误表明事实并非如此。

您需要确保代码中的这一点之后:

 BidProduct p = Products.First();

p.BidEntries 不为 null - 为其分配一个 new List() 或确保每个产品具有非 null BidEntries 属性。

Have you initialized p.BidEntries to a List<BidEntries>?

The error suggests that it isn't.

You need to ensure that after this point in your code:

 BidProduct p = Products.First();

p.BidEntries is not null - either assign a new List<BidEntry>() to it or ensure that each product has a non null BidEntries property.

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