dpaquette / EntityFramework.Seeder

A collection of helper methods to help seed entity framework databases
MIT License
42 stars 12 forks source link

Improved exception handling #3

Closed dpaquette closed 9 years ago

dpaquette commented 9 years ago

If an exception is thrown by CsvHelper it is almost always not reported properly in the package manager console. This is because the CsvHelper exceptions are not marked as serializable.

We need to wrap these with exceptions that contain the important information and are serializable so it is easier to diagnose problems when they occur.

See Issue #2