我有一个做报价的用户的表报价存储QuotationNumber。
现在,我想在我的视图上打印出QuotationNumber。
这是我在控制器中查询的内容:
Quotation iq = new Quotation();
string test = (from i in Quotations
where i.CustomerID == c.ID
select i.QuotationNumber).ToString();
当我显示测试时,它被放掉了:
System.Data.Objects.ObjectQuery`1[System.String]
谁能告诉我解决方案。谢谢。
最佳答案
尝试这个 :
List<string> test = (from i in Quotations
where i.CustomerID == c.ID
select i.QuotationNumber).ToList();
然后遍历所有结果:
foreach (string quotationNumber in test)
{
Console.WriteLine("Found {0}", quotationNumber);
}