Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a question,... i'm using following code:

Expression<Func<Administrator, bool>> function = (Administrator a) => (a.User.Username.Equals(username) && a.User.Password.Equals(password));

List<Administrator> admins = uow.AdministratorRepository.find(function).ToList();

the result in the admins list is a list of Administrators where the username and password of the User property of the Administrators are equal to the wanted credentials. But my big question now is why for every Administrator admin.User is returning null. I don't get it, maybe it is something small but I don't see it. So the property returns null but it is checked in the expression. Hope you can help me?

share|improve this question
are you using Linq to SQL or Entity Framework? – lante Dec 17 '12 at 19:22

1 Answer

You can do .Include("UserRelationshipPropertyName"), basically you'll have to tell the framework to load the user objects as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.