本文介绍了使用.Local.ToBindingList()时如何在WinForms中过滤DataGridView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

正如主题所说。

以下是完整信息 -   http://blogs.msdn.com/b/adonet/archive/2011 /02/01/using-dbcontext-in-ef-feature-ctp5-part-7-local-data.aspx?CommentPosted=true#commentmessage

Here's full info - http://blogs.msdn.com/b/adonet/archive/2011/02/01/using-dbcontext-in-ef-feature-ctp5-part-7-local-data.aspx?CommentPosted=true#commentmessage

当使用DbContext时,WPF的解决方案,但对于WinForms,没有。那么如何在WinForms中使用ToBindingList时过滤数据?

When using DbContext there's solution for WPF, but for WinForms there are none. So how to filter data when using ToBindingList in WinForms?

推荐答案

欢迎来到MSDN论坛。

Welcome to MSDN Forum.

在你发布的文章中,它介绍了Local属性将返回一个ObservableCollection< T>,所以你使用'where'过滤记录,然后调用ToBindingList方法。

In the article you posted, it introduces that Local property will return an ObservableCollection<T>, so you using 'where' to filter records as well, and then call ToBindingList method.

最好的问候


这篇关于使用.Local.ToBindingList()时如何在WinForms中过滤DataGridView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 09:35