タイプ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");
}
}
...しかし、プロパティはフロートか何か他のものにする必要がありますか?