Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonathanMagnan/e7ee0e1f01605806f312cbaa082922ae to your computer and use it in GitHub Desktop.
Save JonathanMagnan/e7ee0e1f01605806f312cbaa082922ae to your computer and use it in GitHub Desktop.
// DELETE all customers that are inactive for more than two years
context.Customers
.Where(x => x.LastLogin < DateTime.Now.AddYears(-2))
.DeleteFromQuery();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment