-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathPostgresExceptionProcessorInterceptor.cs
30 lines (26 loc) · 1.29 KB
/
PostgresExceptionProcessorInterceptor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using EntityFramework.Exceptions.Common;
using Microsoft.EntityFrameworkCore;
using Npgsql;
namespace EntityFramework.Exceptions.PostgreSQL;
class PostgresExceptionProcessorInterceptor : ExceptionProcessorInterceptor<PostgresException>
{
protected override DatabaseError? GetDatabaseError(PostgresException dbException)
{
return dbException.SqlState switch
{
PostgresErrorCodes.StringDataRightTruncation => DatabaseError.MaxLength,
PostgresErrorCodes.NumericValueOutOfRange => DatabaseError.NumericOverflow,
PostgresErrorCodes.NotNullViolation => DatabaseError.CannotInsertNull,
PostgresErrorCodes.UniqueViolation => DatabaseError.UniqueConstraint,
PostgresErrorCodes.ForeignKeyViolation => DatabaseError.ReferenceConstraint,
_ => null
};
}
}
public static class ExceptionProcessorExtensions
{
public static DbContextOptionsBuilder UseExceptionProcessor(this DbContextOptionsBuilder self)
=> self.AddInterceptors(new PostgresExceptionProcessorInterceptor());
public static DbContextOptionsBuilder<TContext> UseExceptionProcessor<TContext>(this DbContextOptionsBuilder<TContext> self) where TContext : DbContext
=> self.AddInterceptors(new PostgresExceptionProcessorInterceptor());
}