zoukankan
html css js c++ java
Nullable 类型的转换
今天碰到Nullable 不能通过Convert.ChangeType转换,辛苦在网上找到两个解决方法,共享一下。
1.
The PumaCode.org Blog
public
object
ChangeType(
object
value, Type conversionType)
{
if
( conversionType.IsGenericType
&&
conversionType.GetGenericTypeDefinition( ).Equals(
typeof
( Nullable
<>
) ) )
{
if
(value
==
null
)
return
null
;
System.ComponentModel.NullableConverter nullableConverter
=
new
System.ComponentModel.NullableConverter(conversionType);
conversionType
=
nullableConverter.UnderlyingType;
}
return
Convert.ChangeType(value, conversionType);
}
引用:
http://blog.pumacode.org/2006/05/18/using-convert-changetype-on-nullable-types/
2.
Paul Wilson's .NET Blog
public
class
DataTypeConverter
{
public
static
object
ChangeType(Type type,
object
value)
{
if
((value
==
null
)
&&
type.IsGenericType)
{
return
Activator.CreateInstance(type);
}
if
(value
==
null
)
{
return
null
;
}
if
(type
==
value.GetType())
{
return
value;
}
if
(type.IsEnum)
{
if
(value
is
string
)
{
return
Enum.Parse(type, value
as
string
);
}
return
Enum.ToObject(type, value);
}
if
(
!
type.IsInterface
&&
type.IsGenericType)
{
Type type1
=
type.GetGenericArguments()[
0
];
object
obj1
=
DataTypeConverter.ChangeType(type1,value);
return
Activator.CreateInstance(type,
new
object
[]
{ obj1 }
);
}
if
((value
is
string
)
&&
(type
==
typeof
(Guid)))
{
return
new
Guid(value
as
string
);
}
if
((value
is
string
)
&&
(type
==
typeof
(Version)))
{
return
new
Version(value
as
string
);
}
if
(
!
(value
is
IConvertible))
{
return
value;
}
return
Convert.ChangeType(value, type);
}
}
这个代码是WilsonORMapper中的QueryHelper类,不好意思,我Reflector了一下。
引用:
http://weblogs.asp.net/pjohnson/archive/2006/02/07/437631.aspx
查看全文
相关阅读:
【Win10开发】相对布局——RelativePanel控件
【Win10开发】关于AutoSuggestBox
【Win10开发】自定义标题栏
线上服务器CPU100%排查
Rest接口单元测试
hibernate validator参数校验&自定义校验注解
JsonView视图
跨域(SpringBoot)
Mybatis的分支选择和In循环
CentOS6.5使用yum安装mysql
原文地址:https://www.cnblogs.com/maplye/p/443391.html
最新文章
一个Java的小问题
“持有对象”小记
Git简记
html 锚点的使用
jQuery ajax
ueditor 发布到服务器提示“后端配置项没有正常加载,上传插件不能正常使用!”
SQL SERVER 修改数据库名称(包括 db.mdf 名称的修改)
jQuery设置和获取以及修改class name值操作
[JS]jQuery,javascript获得网页的高度和宽度
jquery中append跟prepend的用法
热门文章
Aborting commit: 'XXX' remains in conflict
SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT 'OpenRowset/OpenDatasource' 的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。系统管理员可以通过使用 sp_configure 启用 'Ad Hoc Distributed Queries'。
js 定时函数
【Win10开发】如何在页面之间传值
【Win10开发】处理PC上的后退键
【Win10开发】响应式布局——AdaptiveTrigger
【Win10开发】Toast通知——后台激活
【Win10开发】Toast通知——前台激活
【Win10开发】Toast通知
【Win10开发】绘制静态UI
Copyright © 2011-2022 走看看