SQL Server 2005 SP1
SD.LLBLGen.Pro.DQE.SqlServer.NET20 v2.0.50727
Self Servicing Two Classes 2005
I have a form which i bound an Entity to textboxes
adrId.DataBindings.Add("Text",_selectedAdresse,"AdrId");
firma.DataBindings.Add("Text",_selectedAdresse,"Firma");
anrede.DataBindings.Add("Text",_selectedAdresse,"Anrede");
vorname.DataBindings.Add("Text",_selectedAdresse,"Vorname");
name.DataBindings.Add("Text",_selectedAdresse,"Name");
adresse.DataBindings.Add("Text",_selectedAdresse,"Adresse");
plz.DataBindings.Add("Text",_selectedAdresse,"Plz");
ort.DataBindings.Add("Text",_selectedAdresse,"Ort");
land.DataBindings.Add("Text",_selectedAdresse,"Land");
The data where load an I can see it on the form and all is ok. But when i change something in the field "Vorname" and then save _selectedAdresse. All is ok, but the dates in the SQL Server 2005 are not changed.
bool succeeded = _selectedAdresse.Save();
succed is always true.
If I click first to the field "AdrId" and then change something in "Vorname" and then click to Name and after I save the _selectedAdresse. Now it works and the dates in the Sql Server are chenged.
Thanks for all help
Andreas