gpt4 book ai didi

c# - Entity Framework 错误...属性无法设置为 'System.Int16' 值

转载 作者:行者123 更新时间:2023-12-04 17:38:49 24 4
gpt4 key购买 nike

我有这个类:

public class PayTerm
{
public int PayTermExternalKey { get; set; }
public int Code { get; set; }
public string Name { get; set; }
}

在数据库中,PayTermExternalKeysmallint,因为它与另一个系统表smallint的键有关,在我的程序中有一个网格,我在其中保存 PayTerm 类的实例...除了正确但是当我去恢复 PayTerm 列表时我在 EntiyFramework 中有一个错误

The 'PayTermExternalKey' property on 'PayTerm' could not be set to 'System.Int16' value. You must set this property to a non-null value of type 'System.Int32'.

我查看了所有使用该属性的类,结果发现它总是 int ...

更新我创建的表很糟糕,现在 PayTermExternalKey 是正确的类型,现在错误不再发生。

最佳答案

我不太了解,但我认为您应该将 PayTerm 类中 PayTermExternalKey 的类型从 int 更改为 short。因为 System.Int16 是 short 类型。

关于c# - Entity Framework 错误...属性无法设置为 'System.Int16' 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55490573/

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