I am sure I am missing something but after searching without any result I have to post this.
I have a winform with databindings similar to this:
this.ceInactive.DataBindings.Add(new Binding("Checked", _company,
CompanyMetadata.PropertyNames.Inactive, true,
DataSourceUpdateMode.OnPropertyChanged));
The values from object are being displayed on the form. I double checked that I had setup INotifyPropertyChanged.
When
I enter the value into the form, I see that the property is being
assigned the value typed so far. I hit "save" on the form, which calls
_company.Save() and nothing happens. The property with the new value
has the new value, however _company.es.IsDirty and
_company.es.IsModified are both set to false.
EntitySpaces Version # 2007.1.1210.0
MyGeneration Version # 1.2.0.7
4/1/2008 11:13:24 AM
I am very confident this is a stupid user error but am missing something.
Thanks,
Mark