I want to relate two entities (Message and Event) in my model without generating a foreign key constraint for my database. The relationship is * to 0..1 Events to Messages.
I thus have a MessageId property in my Event class.

I want to create a navigation property ("Message") in my Event class that returns the corresponding Message, or null if none exists. However I always want to store a value for MessageId in my Event class even if the corresponding Message does not exist (as I want to display the ID to users).

Is this possible without duplicating the message ID property in Event?

link|improve this question
You are trying to solve the problem on the wrong layer. If it is for display purposes you should consider implementing it in the UI layer. – Eranga Oct 7 '11 at 23:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.