如何获取我的列表框以显示我的实体框架数据库中属性的实际名称

发布于 2025-01-17 15:14:25 字数 461 浏览 1 评论 0原文

我的列表框是显示数据,但没有显示该数据的实际名称,这是我用来显示它的一些代码,但没有显示名称。

     public void WireUpList()
    {
        FoodListBox.DataSource = GetFood();
        
    }

     
    private BindingList<Food> GetFood()
   {

        var foodList = nRIDataContext.FoodModels.ToList();
        
        var listBinding = new BindingList<Food>(foodList);

        return listBinding;


    }

        

起初,我将方法作为列表而不是绑定列表,我认为这是解决方案,但我仍在尝试弄清楚它。

My list box is showing the data but not the actual names of it here is some code I used to display it but its not showing the names.

     public void WireUpList()
    {
        FoodListBox.DataSource = GetFood();
        
    }

     
    private BindingList<Food> GetFood()
   {

        var foodList = nRIDataContext.FoodModels.ToList();
        
        var listBinding = new BindingList<Food>(foodList);

        return listBinding;


    }

        

At first I had my method as a List not a binding list and I thought that was the solution but I'm still trying to figure it out.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文