public Alumni()
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_person_id", DbType="Char(8) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string person_id
{
get
{
return this._person_id;
}
set
{
if ((this._person_id != value))
{
this.Onperson_idChanging(value);
this.SendPropertyChanging();
this._person_id = value;
this.SendPropertyChanged("person_id");
this.Onperson_idChanged();
}
}
}
.
.
. |