Hi. I am a little confused of the following issue. I am using NHibernate with Postgres database. Executting the following statement:
try
{
//make a query
}
catch
{
},
however, the CLR reports an unhandled NpgsqlException since I do not have a column in the database. The question is why the unhandled exception gets reported, if I included the query in catch all statement?