可空整数 ? (使用 linq)
我在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 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>
akaint?
) instead of a non-nullable one. That's the most logical solution - does nemerle support nullable value types?