我应该在构造函数中初始化集合吗

发布于 2024-10-18 16:01:01 字数 439 浏览 1 评论 0原文

我在 FooBar 之间有一个多对多关系,

这是一个简化的 Foo

public class Foo
{
    public virtual ICollection<Bar> Bars {get;set;}
}

,我想保存一个附加了一些栏的新 foo :

var foo = new Foo();
foo.Bars.Add(bar1); //I'll get an error that if Bars is not initialized
repo.Insert(foo);
repo.SaveChanges();

我应该在构造函数中初始化 Bars 吗?应该这样做吗? (首先使用 EF4 CTP5 代码)

I have a many-to-many relationship between Foo and Bar

Here's a simplified Foo

public class Foo
{
    public virtual ICollection<Bar> Bars {get;set;}
}

and I want to save a new foo with some bars attached:

var foo = new Foo();
foo.Bars.Add(bar1); //I'll get an error that if Bars is not initialized
repo.Insert(foo);
repo.SaveChanges();

should I initialize the Bars in the constructor, is this how it should be done ?
(using EF4 CTP5 codefirst)

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

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

发布评论

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

评论(1

毅然前行 2024-10-25 16:01:01

我确实会在构造函数中初始化集合(如果实际上总是需要集合),或者会更改 getter 以在首次需要集合时进行初始化(如果并不总是需要集合)。

I'd indeed initialize the collection in the constructor (if the collection is virtually always needed), or would change the getter to initialize whenever the collection is first needed (if the collection is not always needed).

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