Hei, SQLMetal generates code like this:
[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();
}
}
}
What are the OnSpecimenChanging
and all those methods do? And does the specimen from thethis.SendPropertyChanged("specimen");
has to be allso capitalized or its not case sensitive?