如何针对 ListCollectionView 编写 linq 查询?

发布于 2024-11-09 18:59:34 字数 329 浏览 0 评论 0原文

这些似乎都不起作用:

var source = myViewModel.MyListCollectionView.Select(x => x as MyType);
var source = myViewModel.MyListCollectionView.Select<object, MyType>(x => x as MyType);
var source = myViewModel.MyListCollectionView.SourceCollection.Select<object, MyType>(x => x as MyType);

none of these seem to do the trick:

var source = myViewModel.MyListCollectionView.Select(x => x as MyType);
var source = myViewModel.MyListCollectionView.Select<object, MyType>(x => x as MyType);
var source = myViewModel.MyListCollectionView.SourceCollection.Select<object, MyType>(x => x as MyType);

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

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

发布评论

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

评论(4

仙女山的月亮 2024-11-16 18:59:34

ListCollectionView 仅实现非泛型 IEnumerable 接口。我怀疑你想要:

var source = myViewModel.MyListCollectionView.Cast<MyType>();

或者(如果某些值不是MyType,那没关系):

var source = myViewModel.MyListCollectionView.OfType<MyType>();

ListCollectionView only implements the non-generic IEnumerable interface. I suspect you want:

var source = myViewModel.MyListCollectionView.Cast<MyType>();

or (if some values won't be of MyType, and that's okay):

var source = myViewModel.MyListCollectionView.OfType<MyType>();
执手闯天涯 2024-11-16 18:59:34
var source = myViewModel.MyListCollectionView.OfType<MyType>();
var source = myViewModel.MyListCollectionView.OfType<MyType>();
泅人 2024-11-16 18:59:34

InternalList 属性的类型为 IList,因此您可以针对该属性编写 linq 查询。

The InternalList property is of type IList so you would be able to write a linq query against that.

锦上情书 2024-11-16 18:59:34

啊啊啊找到了。你必须使用 Cast<>第一的!

var source = myViewModel.MyListCollectionView.Cast<MyType>().Select(p=>p.MyProperty);

ahhhh found it. you have to use Cast<> first!

var source = myViewModel.MyListCollectionView.Cast<MyType>().Select(p=>p.MyProperty);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文