У Заказчика есть много ReservationRequest, у ReservationRequest есть только один Клиент.
Допустим, я получаю свой ReservationRequest следующим образом:
var c = dataContext.ReservationRequestSet.FirstOrDefault(i => i.id == RequestId);
Я получаю свой ReservationRequest без проблем, но когда я делаю что-то подобное.
if (c != null)
{
int id = c.Customers.id;
Я получаю
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
Line 75: if (c != null)
Line 76: {
Line 77: int id = c.Customers.id;
У меня очень мало опыта в EF, но этот тип вещей работает в nHibernate без проблем, я пропускаю настройки где-то в EF?
Спасибо, Джим