gpt4 book ai didi

c# - 如何将字符串转换为 System.Data.Objects.ObjectQuery`1[System.String]

转载 作者:太空宇宙 更新时间:2023-11-03 22:04:02 25 4
gpt4 key购买 nike

我有一个表 Quotation 存储每个进行报价的用户的 QuotationNumber。现在我想在我的 View 中打印出 QuotationNumber。

这是我在 Controller 中查询的内容:

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);
}

关于c# - 如何将字符串转换为 System.Data.Objects.ObjectQuery`1[System.String],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9075317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com