Skip to content

Commit 581a194

Browse files
CODE RUB: Use SqlState instead of ErrorCode
1 parent 759d44c commit 581a194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

STX.EFxceptions.PostgreSQL.Base/Brokers/DbErrorBroker/PostgreSqlErrorBroker.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ namespace STX.EFxceptions.PostgreSQL.Base.Brokers.DbErrorBroker
99
public class PostgreSqlErrorBroker : IPostgreSqlErrorBroker
1010
{
1111
public string GetErrorCode(NpgsqlException postgreSqlException) =>
12-
postgreSqlException.ErrorCode.ToString();
12+
postgreSqlException.SqlState;
1313
}
1414
}

0 commit comments

Comments
 (0)