I have the following scenario in a Silverlight 4 application using DevForce 2010...
I have 2 entities, say "Employee" and "Office"... And "Employee" table has non-nullable column "PrimaryOfficeID" with foreign key relation to "OfficeID" column in "Office" table....
When I create new "Employee" entity in the application and then save it without assigning it a primary office...
Why might it be that upon saving the new Employee entity that the result of executing verification on that entity (as shown above) does not reflect an error?
I assume this is because the PrimaryOffice property contains a null Office entity which is valid. Is that correct?
If so, how do I make it so that attempting the save without assigning a primary office would cause this verification to fail?