I have two questions about the code generated by Linq for SQL in VS Orcas Beta 1: Linq for SQL generates Set-Property which looks like set { if (( this ._Name != value )) { this .OnPropertyChanging( "Name" ); this ._Name = value ; this .OnPropertyChanged( "Name" ); } and a the following event publisher protected void OnPropertyChanging( string propertyName) { if (( this .PropertyChanging != null )) { this .PropertyChanging( this , new global ::System.ComponentModel. PropertyChangedEventArgs
Read More...