将实体框架对象绑定到 Datagridview C#

Posted

技术标签:

【中文标题】将实体框架对象绑定到 Datagridview C#【英文标题】:Binding Entity Framework objects to a Datagridview C# 【发布时间】:2011-08-13 05:04:25 【问题描述】:

我一直在尝试将 Entity Framework 对象绑定到 DataGridView,但我一直遇到死胡同,我似乎无法在任何地方找到答案。

我可以将整个表(实体)绑定到一个网格视图,它允许我进行更改并将这些更改保存回数据库,如下所示:

    WS_Model.WS_Entities context;

    private void simpleButton1_Click(object sender, EventArgs e)
    
        context = new WS_Entities();

        var query = from c in context.Users select c;

        var users = query.ToList();

        gridControl1.DataSource = users;
    

    private void simpleButton2_Click(object sender, EventArgs e)
    
        context.SaveChanges();
    

但我不想在我的 datagridview 中查看我的数据库中表中的所有列,所以我尝试这样做......

WS_Entities context = new WS_Entities();

    private void simpleButton1_Click(object sender, EventArgs e)
    
        var query = from c in context.Users
                    where c.UserName == "James"
                    select new  c.UserName, c.Password, c.Description ;

        var results = query.ToList();

        gridControl1.DataSource = results;
    

    private void simpleButton2_Click(object sender, EventArgs e)
    
        context.SaveChanges();
    

但现在我无法编辑 DataGridView 中的任何数据。

我在这里看不到树木的树木 - 请有人介意指出我们的方法错误或告诉我将 EF 与 Winforms 绑定的最佳做法是什么,因为我正在流失人才。

我可以看到它与该部分有关:

select new  c.UserName, c.Password, c.Description 

但我不知道为什么。

【问题讨论】:

Good luck. 【参考方案1】:

线路的问题:

select new  c.UserName, c.Password, c.Description 

是它正在创建一个anonymous type,并且匿名类型是不可变的——即只读。这就是您的更改不会反映在新类型或原始 EF 对象中的原因。

现在,关于不显示所绑定对象的所有列的方法,我在下面给出了三个选项。

隐藏不需要的列

最直接的方法是将您不想显示的列的 visible 属性设置为 false。

dataGridView1.Columns[0].Visible = false;

Columns 集合索引器中的值可以是指定列位置的整数或列名称的字符串。

EF 中用于此数据绑定的自定义对象

您还可以在 EF 层处理此问题 - 为您的绑定创建一个自定义对象,该对象 EF 从数据库映射而没有您不想要的列。我根本没有真正使用过 EF 4.0,但我知道它现在具有此功能。

自定义 DTO 从 EF 对象投影然后映射回来

第三个选项(在我看来这些都是从好到坏,但我想我会告诉你一些方法!)是查询一个具体的类型,然后映射回 EF 对象。比如:

private class DataBindingProjection

    public string UserName  get; set; ;
    public string Password  get; set; ;
    public string Description  get; set; ;


private void simpleButton1_Click(object sender, EventArgs e)

    context = new WS_Entities();
    var query = from c in context.Users
                where c.UserName == "James"
                select new DataBindingProjection  UserName = c.UserName, Password = c.Password, Description = c.Description ;
    var users = query.ToList();
    gridControl1.DataSource = users;


private void simpleButton2_Click(object sender, EventArgs e) 

    // and here you have some code to map the properties back from the 
    // projection objects to your datacontext

    context.SaveChanges();

在某些情况下,这也可能是一个可行的解决方案......

【讨论】:

嗨,David - 我曾考虑过 hide 方法,但希望有更清洁的解决方案。谢谢你的回答 @David Hall:您将如何将此解决方案转换为在 MVVM 中使用?我正在尝试将其放入 ObservableCollection 中,以便我可以通知 PropertyChanged 事件。谢谢! +1 有时您会忘记眼镜在您的鼻子上,而是一直在四处寻找它们! “自定义 DTO 计划”是我需要实施的。

以上是关于将实体框架对象绑定到 Datagridview C#的主要内容,如果未能解决你的问题,请参考以下文章

c# 中如何把实体类绑定到dataGridView并显示出来。

如何使用 Entity Framework 将多个表中的数据绑定到 datagridview 并使用 CRUD 操作?

将对象数组绑定到 DataGridView 控件

如何实现c# winform DataGridView添加一行,添加数据后,保存到数据库?

绑定到 BindingSource 时将新行插入 DataGridView

将对象列表数据绑定到 WinForms DataGridView,但不显示某些公共属性