Hey people,
Here is a strange problem. I've created a DD Linq2Sql website.
When editing and then updating a row one of the foreign fields is wrong on update
and causes an error in SQL. I don't understand where does it take it's value from.
The value which is sent through AJAX from the select box is right, but when I put a break point in the update method I could see the value is wrong there.
partial void UpdateReadiness_ActivitiesHistory(Readiness_ActivitiesHistory instance)
{
// here I set the breakpoint and inspected 'instance'
ExecuteDynamicUpdate(instance);
}
Has anyone had any experience of this kind?
Please help.
Thanks
Michael
partial void UpdateReadiness_ActivitiesHistory(Readiness_ActivitiesHistory instance)
{
ExecuteDynamicUpdate(instance);
}