本文介绍了如何使用Linq Lambda表达式在标签上打印记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
//我为Lambda表达式新推出并推出它
// i m new for for Lambda expression and lurning it
var getdata = dm.Cloths.Where(w => w.Cloth_No == txtvalue).Select(w => new { w.Cloth_Name, w.Cloth_Type });
if (Enumerable.Count(getdata) > 0)
{
MessageBox.Show(????????);
// how can i print Cloth_Name and Cloth_Type in message box which are in getdata
}
推荐答案
var getdata = dm.Cloths.Where(w => w.Cloth_No == txtvalue).Select(w => new { w.Cloth_Name, w.Cloth_Type }).ToList();
if (getdata.Any())
{
var sb = new StringBuilder();
foreach(var item in getdata)
{
sb.Append(item.Cloth_Name + " : " + item.Cloth_Type + "\n");
}
MessageBox.Show(sb.ToString());
}
这篇关于如何使用Linq Lambda表达式在标签上打印记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!