如何使用实体框架和linq正确填充gridlookupedit

如何使用实体框架和linq正确填充gridlookupedit

本文介绍了如何使用实体框架和linq正确填充gridlookupedit的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我怎样才能正确填写gridlookupedit?我找不到错误。 我的尝试:how can i fill the gridlookupedit correctly?. I can not find the error.What I have tried:public void CargaGLEVerdadero() { pcbjEntidades contexto = new pcbjEntidades(); IList consultaModeloInsumosVerdadera = (from ModeloInsumoes in contexto.ModeloInsumoes where ModeloInsumoes.Activo == true select new { ModeloInsumoes.NombreModeloInsumo }).ToList(); gleNombreModelo.Properties.DataSource = new BindingSource(consultaModeloInsumosVerdadera, ""); }public frmAgregarMarca() { InitializeComponent(); CargaGLEVerdadero(); } 来自我的GRIDLOOKUPEDIT结果 http://i.stack.imgur.com/yLJut.png推荐答案gleNombreModelo.Properties.DataSource = new BindingSource(consultaModeloInsumosVerdadera, "");gleNombreModelo.Properties.DisplayMember = "NombreModeloInsumo"; 还有 .ValueMember -property,它通常与 .DisplayMember一起使用,您可能会感兴趣。请查看文档:在线文档 - Developer Express Inc. [ ^ ]There's also a .ValueMember-property which often is used in conjunction with .DisplayMember and might be of interest to you. Take a look at the documentation: Online Documentation - Developer Express Inc.[^] 这篇关于如何使用实体框架和linq正确填充gridlookupedit的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-15 14:45