gpt4 book ai didi

c# - 在 linq 中将 int 转换为字符串以进行搜索

转载 作者:太空狗 更新时间:2023-10-29 19:52:59 25 4
gpt4 key购买 nike

我希望我的用户能够通过部分字符串搜索采购订单(INT),即如果采购订单是 123456,则输入 456 会在结果中得到 123456。

我认为这会起作用:

        var pop = (from po in ctx.PurchaseOrders
let poid = po.PurchaseOrderID.ToString()
where poid.Contains(term)
select new SearchItem
{
id = poid,
label = po.SupplierID,
category = "purchaseorder"
}).ToList();

但是我得到一个错误

LINQ to Entities does not recognize the method 'System.String ToString()' method, and this method cannot be translated into a store expression.

如何将 INT PurchaseOrderID 转换为字符串以便搜索它的片段?

谢谢

最佳答案

使用这个:

id = SqlFunctions.StringConvert((double)poid)

更多信息:http://msdn.microsoft.com/en-us/library/dd487127.aspx

关于c# - 在 linq 中将 int 转换为字符串以进行搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21257251/

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