强制转换 IEnumerable到 ObservableCollection没有构造函数注入 IEnumerable

发布于 2024-09-10 20:19:49 字数 484 浏览 6 评论 0原文

我怎样才能做到这一点?

这是不行的:

ObservableCollection obsCol = new ObservableCollection(myIEnumerable);

场景:

var query = from c in customers
                    select new Customer()
                    {
                       Products = from p in products
                                  where p.Id = c.Id
                                  select p
};

Products是一个ObservableCollection,所以它不能从上面的选择中获取IEnumerable结果...

如何转换?

How can I do that?

thats a no go:

ObservableCollection obsCol = new ObservableCollection(myIEnumerable);

scenario:

var query = from c in customers
                    select new Customer()
                    {
                       Products = from p in products
                                  where p.Id = c.Id
                                  select p
};

Products is a ObservableCollection so it can not take the IEnumerable result from the select above...

How to cast?

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

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

发布评论

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

评论(1

π浅易 2024-09-17 20:19:49

像这样:

ObservableCollection obsCol = new ObservableCollection(myIEnumerable.ToList());

请注意,ObservableCollection 实例不会反映对 customers 列表的更改。

编辑:Select 扩展方法返回编译器生成的迭代器类的实例。由于此类不继承ObservableCollection,因此不可能将其转换为ObservableCollection。

Like this:

ObservableCollection obsCol = new ObservableCollection(myIEnumerable.ToList());

Note that the ObservableCollection instance will not reflect changes to the customers list.

EDIT: The Select extension method returns an instance of a compiler-generated iterator class. Since this class does not inherit ObservableCollection, it is impossible to cast it to one.

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