如何获取我的列表框以显示我的实体框架数据库中属性的实际名称
我的列表框是显示数据,但没有显示该数据的实际名称,这是我用来显示它的一些代码,但没有显示名称。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论