可空整数 ? (使用 linq)

发布于 2024-08-26 08:49:16 字数 677 浏览 7 评论 0原文

我在将 NULL 转换为 Int32 时遇到异常。

我从数据库中得到了一个可以为 null 的tinyint 的表

[Column(Storage="_StatType", DbType="tinyint NULL")]
public StatType : int { get { _StatType; } }

(为了获取 C# 代码,只需替换变量的类型),

并且在进行 linq select 之后,

def StartLinq = linq <#from lpi in _CfgListParIzm
    where lpi.ID_ListParIzm==drr1
    select (lpi.StatType)
#> ;

如果该表为 null,则无法读取 StartLinq.ToArray()[0] :-/

mutable STT : int = 0;
try
{
    _=int.TryParse(StartLinq.ToArray()[0].ToString(), out STT);
}
catch { | _ is Exception => () /* I don't care*/ }

上面的代码是非常糟糕的技巧:( 我不会使用它。

I've got exception about convert NULL to Int32.

I've got a table from database with nullable tinyint

[Column(Storage="_StatType", DbType="tinyint NULL")]
public StatType : int { get { _StatType; } }

(to get C# code just replace variable's type)

and after making linq select

def StartLinq = linq <#from lpi in _CfgListParIzm
    where lpi.ID_ListParIzm==drr1
    select (lpi.StatType)
#> ;

StartLinq.ToArray()[0] can't be readed if that is null :-/

mutable STT : int = 0;
try
{
    _=int.TryParse(StartLinq.ToArray()[0].ToString(), out STT);
}
catch { | _ is Exception => () /* I don't care*/ }

upper code is very poor trick :( I wont use it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烏雲後面有陽光 2024-09-02 08:49:16

我不知道 nemerle,但在 C# 中,您可以将 StatType 设置为可为 null 的整数(Nullable 又名 int?),而不是不可为 null 的整数。这是最合乎逻辑的解决方案 - nemerle 支持可为空值类型吗?

I don't know nemerle, but in C# you would make StatType a nullable integer (Nullable<int> aka int?) instead of a non-nullable one. That's the most logical solution - does nemerle support nullable value types?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文