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?