A piece of Hibernate's enhanced TableGenerator:

protected String determineValueColumnName(Properties params, Dialect dialect) {
    ObjectNameNormalizer normalizer = ( ObjectNameNormalizer )
params.get( IDENTIFIER_NORMALIZER );
    String name = ConfigurationHelper.getString( VALUE_COLUMN_PARAM,
params, DEF_VALUE_COLUMN );
    return dialect.quote( normalizer.normalizeIdentifierQuoting( name ) );
}


When porting this, I can't seem to find anything similar to this
ObjectNameNormalizer in NHibernate. Should I just ignore those parts?

/Oskar

Reply via email to