gpt4 book ai didi

sql - LinqPad 像操作错误

转载 作者:行者123 更新时间:2023-12-04 21:12:08 26 4
gpt4 key购买 nike

我是 linqpad 和 C# 的新手。我希望获得 odata 中以“ic”开头的 ID 列表。我尝试了 SqlMethods.like 并得到了这个错误。 “名称‘SqlMethods’在当前上下文中不存在”

下面是查询

from id in Products

where SqlMethods.Like(id.ProductId, "IC%")

select id

请帮忙。无法找到解决方案

最佳答案

另一种选择是使用 Contains 方法:

from id in Products
where id.ProductId.Contains("IC")
select id;

这实际上会在 SQL 中生成一个 LIKE 语句。

关于sql - LinqPad 像操作错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11056413/

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