5

我有这个代码:

    private void FillCombobox()
    {
        using (InventoryEntities c = new InventoryEntities(Properties.Settings.Default.Connection))
        {
            List<Customer> usepurposes = c.Customers.ToList();
            DataTable dt = new DataTable();
            dt.Columns.Add("id");
            dt.Columns.Add("name");
            foreach (Customer usepurpose in usepurposes)
            {
                dt.Rows.Add(usepurpose.id, usepurpose.name);
            }
            comboBox1.ValueMember = dt.Columns[0].ColumnName;
            comboBox1.DisplayMember = dt.Columns[1].ColumnName;
            comboBox1.DataSource = dt;

        }
    }

我将此方法称为:

    private void frmBillIn_Load(object sender, EventArgs e)
    {
        FillCombobox();
    }

当我运行我的应用程序时,组合框不会显示客户(项目)。

只显示Model.Customer

问题是什么??

我尝试了许多解决方案,但没有一个有效。

4

4 回答 4

8

您不必混合两个世界,即实体框架的世界和数据集的世界。直接绑定:

    using (InventoryEntities c = new InventoryEntities(Properties.Settings.Default.Connection))
    {
        comboBox1.DataSource    = c.Customers;
        comboBox1.ValueMember   = "id";
        comboBox1.DisplayMember = "name";
    }

如果这不起作用,那么列名可能与“名称”不同(也许是“名称”?)。

于 2012-07-31T17:34:09.190 回答
6

如果您使用“使用”,则需要在关闭连接之前放置一个 ToList() 进行评估。使用 ItemsSource 、 ValueMember 和 DisplayMember 区分大小写

using (InventoryEntities c = new InventoryEntities())
    {
        comboBox1.ItemsSource   = c.Customers.toList();
        comboBox1.ValueMemberPath   = "Id";
        comboBox1.DisplayMemberPath = "Name";
    }

希望这有帮助。

于 2012-07-31T19:27:21.517 回答
0

请参阅以下示例。(名称引用 => DAL=数据访问层,projectEntities = 实体集名称)希望这会有所帮助..

列表项List = new List();

            using (DAL.projectEntities en = new DAL.projectEntities())
            {
                foreach (var item in en.tableName.Where(a => a.tableName != null).ToList())
                {
                    itemsList.Add(item.tableFieldName);
                }                                   
            }

            comboboxTable.ItemsSource = itemsList;
于 2014-03-26T10:52:13.470 回答
0

在当前版本的 WinForms 中,我发现这是可行的

RentalsEntities1 db = new RentalsEntities1();
        List<SiteSeeingLocation> ssloc = db.SiteSeeingLocations.ToList();
        cbSites.DataSource = ssloc;
        cbSites.ValueMember = "id";
        cbSites.DisplayMember = "ssLocation";
于 2019-11-11T17:21:18.927 回答