Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9079953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T19:57:32+00:00 2026-06-16T19:57:32+00:00

Hi everybody and thanks for reading. I’m working with NHibernate and PostgreSQL, and basically

  • 0

Hi everybody and thanks for reading.

I’m working with NHibernate and PostgreSQL, and basically I want to do two things:

  1. Provide user-friendly messages to errors while persisting the entities in the database
  2. Adapt the UI to show the errors in the specific parts (so if the name must be Unique and the user introduced one that already exists, I’d like to show the error as a tooltip of the Name textbox or whatever it is).

So I thought that finding the column where the constraint checks fails would be useful, and I’m trying to find a clean way to do this.
For example, NHibernate throws PropertyValueException when a field fails a “Not Null” constraint, and this (exception) class has a property called “PropertyName” which tells me the property that failed the constraint. This is what I want to get, but getting the column sounds easier and I think I could get the related property from the column name.

So, is there a (clean) way to extract the related column from NpgsqlException? Or something like that using NHibernate?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T19:57:33+00:00Added an answer on June 16, 2026 at 7:57 pm

    there is the hook ISqlExceptionConverter which is meant for this. Configure it with

    config.SetProperty(NHibernate.Cfg.Environment.SqlExceptionConverter, typeof(MyNpgSqlExceptionConverter));
    

    or

    using NHibernate.Cfg.Loquacious;
    
    config.DataBaseIntegration(d => d.ExceptionConverter<MyNpgSqlExceptionConverter>());
    

    and implement it like this

    class MyNpgSqlExceptionConverter : ISQLExceptionConverter
    {
        public Exception Convert(AdoExceptionContextInfo adoExceptionContextInfo)
        {
            var npgsqlException = (NpgsqlException)adoExceptionContextInfo.SqlException;
    
            switch (npgsqlException.Code)
            {
                case "<errorcode for duplicate key>":
                    return new WhateverException(...);
                    break;
                default:
                    break;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello everybody and thanks for reading. I have this html; <i class=icon-plus icon-white> Test
Hi everybody and thanks for your time, I read filenames in a QList. This
Hello everybody I am drawing dynamic table and I want to add header for
Hello everybody my linq to sql selection does not working on dateTime field for
Hello everybody i have C++ tStringGrid I want to get string from specific cell
I have been working on moving over to OOP in PHP. I have reading
I have two arrays, say A and B with |A|=8 and |B|=4. I want
Thanks everybody for the reply! Now I fixed the problem by R 2.12.1 and
Hello everybody and thanks for your time. I'm developing some kind of monitoring application
In continuation of: Storing DataRelation in xml? Thanks to everybody for answers to my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.