Skip to content

Instantly share code, notes, and snippets.

@gexplorer
Created May 30, 2016 10:13
Show Gist options
  • Save gexplorer/fca714bec48bd1bb2dc841976b5f23f8 to your computer and use it in GitHub Desktop.
Save gexplorer/fca714bec48bd1bb2dc841976b5f23f8 to your computer and use it in GitHub Desktop.
Catch DbEntityValidationException
ex.EntityValidationErrors
.SelectMany(result => result.ValidationErrors)
.ForEach(error => Console.WriteLine(error.PropertyName + @" : " + error.ErrorMessage));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment