Skip to content

Instantly share code, notes, and snippets.

@chsami
Last active October 12, 2021 17:45
Show Gist options
  • Save chsami/997636fcf4021a797ee110efc9d29aae to your computer and use it in GitHub Desktop.
Save chsami/997636fcf4021a797ee110efc9d29aae to your computer and use it in GitHub Desktop.
IQueryable inside foreach
IQueryable<Entity> query = dbContext.Entity.Where(x => x.Foo == "Foo")
foreach(var item in query) {
Console.WriteLine(item.ToString())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment