gpt4 book ai didi

c# - SQL 和 ASP.NET 从物化 'System.Int64' 类型到 'System.Int32' 类型的指定转换无效

转载 作者:行者123 更新时间:2023-12-02 07:21:07 24 4
gpt4 key购买 nike

我正在使用 ASP.NET Entity Framework ,我正在尝试创建一个 SqlQuery,但我收到此错误:

The specified cast from a materialized 'System.Int64' type to the 'System.Int32' type is not valid.

我的问题是我不知道哪个列给我带来了麻烦以及如何解决它。这是我的代码。我不认为我正在做的是我的类型转换,因为那些是字符串。

return View(db.Data.SqlQuery("SELECT ROW_NUMBER() OVER(ORDER BY slotOrder ASC) AS id, 
concat(a.dateSlot, ' - ', a.timeSlot) as dateSlot,
concat(a.dateSlot, '-', a.timeSlot) as timeSlot,
COUNT(*) as slotOrder
FROM Appointments a
LEFT OUTER JOIN dateTimeSlots b
ON a.dateSlot = b.dateSlot AND a.timeSlot = b.timeSlot
GROUP BY a.dateSlot, a.timeSlot, b.slotOrder
ORDER BY b.slotOrder").ToList());

这是我的类(class):

public class dateTimeSlots
{
public int id { get; set; }
[DisplayName("Date")]
public string dateSlot { get; set; }
[DisplayName("Time")]
public string timeSlot { get; set; }
[DisplayName("Order")]
public int slotOrder { get; set; }
}

最佳答案

您上面的查询返回一个 Int64 (long) 并且您将其存储为一个 Int32 (int ).找出它是哪个数字字段并调整模型。

我的猜测是 idlong,因为它是 ROW_NUMBER()

关于c# - SQL 和 ASP.NET 从物化 'System.Int64' 类型到 'System.Int32' 类型的指定转换无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46060625/

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