gpt4 book ai didi

c# - 在 linq to entities 中将 int 转换为字符串

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

我的代码是:

        var currency = (from ac in db.shop
join cur in db.books
on ac.CODE equals cur.CODE.ToString() //here is the Error
// because "ac.code is type strig" & "cur.code is type long
where ac.ID == merchantId
select new Currency()
{
ShopCode = ac.CODE,
PosCode = ac.POSCODE,
}).ToList();

我发现 .ToString()、SqlFunctions.StringConvert(long) 在连接查询条件下不起作用,但在查询的“选择”区域起作用。但是 Devart.Data.Oracle.Entity.OracleFunctions.ToChar((long)cur.CODE) 工作正常。由于我使用的是 Entity Framework ,因此特定数据库类型(即 oracle 或 sql server)不应该有问题。即使我将来从 oracle 更改为 sql,它也应该可以工作。

请给我一个解决方案。

最佳答案

你试过转换这个吗?

尝试:ac.CODE 等于(字符串)cur.CODE

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

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