I am trying to push 100 Product entities created dynamically, using DBSet.AddRange()
.
If for example, 1st Product entity has some data issues and throws
exception during Commit()
, all remaining 99 product entities also not
going to save.
Is it possible to skip corrupted entities only so that other entities
can be saved using DBSet.AddRange()
?