我正在使用较旧的Oracle数据库,我觉得有可能更好的方法来取消我从数据库中检索的值。
目前,我有一个充满不同类型特定方法的静态类:
public static int? Int(object o)
{
try
{
return (int?)Convert.ToInt32(o);
}
catch (Exception)
{
return null;
}
}
..等不同类型,但我觉得应该有更好的方法吗?如果我想取消装箱值,我会做一些......
int i;
i = nvl.Int(dataRow["column"]); //In this instance, "column" is of a numeric database type
我考虑过使用泛型类来处理所有不同的类型,但我无法找到最佳方法。
有什么想法吗?
答案 0 :(得分:6)
我发现辅助方法如下所示在你的场景中有用 - 测试DBNull比捕获异常更有效:
public static MyHelper
{
public static Nullable<T> ToNullable<T>(object value) where T : struct
{
if (value == null) return null;
if (Convert.IsDBNull(value)) return null;
return (T) value;
}
public static string ToString(object value)
{
if (value == null) return null;
if (Convert.IsDBNull(value)) return null;
return (string)value;
}
}
这适用于您将遇到的字符串和常用的原始值类型(int,decimal,double,bool,DateTime)。
它与你的例子略有不同,因为它是演员而不是转换 - 但我个人更喜欢这个。即如果数据库列是NUMERIC(十进制),我宁愿显式,如果我想将值转换为int,例如:
int? myIntValue = (int?) MyHelper.ToNullable<decimal>(reader["MyNumericColumn"]);
答案 1 :(得分:0)
您可以引入简单的模型类并在它们之间进行映射。
例如:
public class Customer
{
public Customer(DataRow row)
{
Name = row["Name"];
}
public Name { get; private set; }
}
当然,要减少重复代码,可以为模型数据类创建基类。
根据您想要花费的精力,您可以使用ORM映射器NHibernate。