ねえ、SQLMetalは次のようなコードを生成します:
[Column(Storage = "_specimen", DbType = "VarChar(100)")]
public string Specimen
{
get
{
return this._specimen;
}
set
{
if ((this._specimen != value))
{
this.OnSpecimenChanging(value);
this.SendPropertyChanging();
this._specimen = value;
this.SendPropertyChanged("specimen");
this.OnSpecimenChanged();
}
}
}
そしてそれらすべてのメソッドは何をOnSpecimenChanging
しますか?そして、からの標本はthis.SendPropertyChanged("specimen");
すべて大文字にする必要がありますか、それとも大文字と小文字を区別しませんか?