使用来自主网格的数据上下文,我试图使用从用户那里收集的信息并将其存储在一个列表中,然后使用该列表并能够使用 LINQ 获取信息。
ColDiv._inventaire.Add(inventaire);
Coldiv 是我的 cs 文件之一,_inventaire 是列表,inventaire 是数据上下文中的数据。
ColDiv 的代码在我的班级之一中:
class CollectionsDiverses
{
public List<Client> _client = new List<Client>();
public List<Inventaire> _inventaire = new List<Inventaire>();
public List<Vente> _VenteArticle = new List<Vente>();
这是将网格中的数据上下文放入属性和列表中的代码。(列表如下)
Inventaire inventaire = null;
frmArticle frmArticle = new frmArticle
bool? bReturn = frmArticle.ShowDialog();
if (bReturn == true)
{
inventaire = (Inventaire)frmArticle.grdMain.DataContext;
inventaire.Créé = DateTime.Now.ToString();
ColDiv._inventaire.Add(inventaire);
dgInventaire.Items.Refresh()
}
现在从逻辑上讲,它被存储了。现在,从另一个来自带有 TextChanged 事件的 TextBox 捕获(例如)客户端的 ID:
private void TxtNoArticle_TextChanged(object sender, TextChangedEventArgs e)
{
try
{
_venteEdition.NoArticle = Int32.Parse(txtNoArticle.Text);
_venteEdition.ArticleComplet = ArticleCompletToString(_venteEdition.NoArticle);
lblArticleComplet.Content = _venteEdition.ArticleComplet;
}
catch (Exception){}
然后从一个方法继续使用 LINQ 来查找具有用户输入的 ID 的客户端:
public string ArticleCompletToString(int iNombre)
{
string sArticle = "";
var req = from art in ColDiv._inventaire
where art.No == iNombre // art.No is the ID the user wants and iNombre is the ID the user entered in the TextBox
select new
{
art.Modèle,
art.Marque
};
foreach (var i in req)
{
sArticle = i.Modèle + " " + i.Marque;
}
return sArticle;
它应该从列表中准确返回我想要的信息,但看起来它甚至没有创建新的 Inventaire。
汪汪一只猫
相关分类