Skip to content

Instantly share code, notes, and snippets.

@alieniasty
Last active January 19, 2018 14:46
Show Gist options
  • Save alieniasty/81a3927323e2349277dc7c70be2df546 to your computer and use it in GitHub Desktop.
Save alieniasty/81a3927323e2349277dc7c70be2df546 to your computer and use it in GitHub Desktop.
Lazy Loading
User user = dbContext.Users.FirstOrDefault(a => a.UserId == userId);
UserDeatils userDetails = user.UserDetails; /* UserDetails are loaded here */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment