Skip to content

Instantly share code, notes, and snippets.

@yostane
Last active September 15, 2017 12:19
Show Gist options
  • Select an option

  • Save yostane/3a35017455b69b98715b026ea2dd8a8d to your computer and use it in GitHub Desktop.

Select an option

Save yostane/3a35017455b69b98715b026ea2dd8a8d to your computer and use it in GitHub Desktop.
using (var context = new VideoGamesDatabaseContext())
{
foreach (var videoGame in context.VideoGames.Where(predicate))
{
context.Remove(videoGame);
}
context.SaveChanges();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment