Skip to content

Instantly share code, notes, and snippets.

@nishanc
Created August 6, 2023 13:14
Show Gist options
  • Save nishanc/fb01038ca4b17faa2a61a998c5bb0a94 to your computer and use it in GitHub Desktop.
Save nishanc/fb01038ca4b17faa2a61a998c5bb0a94 to your computer and use it in GitHub Desktop.
foreach (var blog in blogs)
{
if (context.Entry(blog).Collection(e => e.Posts).IsLoaded)
{
Console.WriteLine($" Posts for blog '{blog.Name}' are loaded.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment