-
Does this package supports existing code where For example, if my existing code looks like: try
{
context.SaveChanges();
}
catch (DbUpdateException e) // <--
{
} Will it catch the exceptions from this package? |
Beta Was this translation helpful? Give feedback.
Answered by
Giorgi
Aug 7, 2023
Replies: 1 comment 1 reply
-
All the exceptions defined in this package inherit from |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jerone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
All the exceptions defined in this package inherit from
DbUpdateException
so any existing code that catches them will also catch exceptions from this package.