在创建与 NUMBER(6, 3) 类型的 Oracle 列相对应的属性时,在决定创建相应属性的数据类型(Double、Float 或...???)之前应该考虑哪些因素
IOW,使用此 Oracle 列定义:
PercentageOfCodersWhoCobbleCobol NUMBER (6, 3)
...我目前有这样的相应属性:
private Double percentageOfCodersWhoCobbleCobol;
public double PercentageOfCodersWhoCobbleCobol
{
get
{
return this.percentageOfCodersWhoCobbleCobol;
}
set
{
this.percentageOfCodersWhoCobbleCobol = value;
NotifyPropertyChanged("PercentageOfCodersWhoCobbleCobol");
}
}
...但是该属性应该是浮动的还是其他的?