When I run my old application (written with SQL-DMO) I check if a foreignkey is checked with key.Checked.
In my new application (written with SMO) I check the same thing with key.IsChecked, but in this case it always return false, even in those case where my old application returns true.
Isn't key.Checked and key.IsChecked the same thing? Why do they return diffrent values?
View Complete Post