I'm certainly missing this parameter but i've searched for a parameter allowing me to generate the fluent nHibernate code for an Oracle Database without the schema name as prefix.
For example, instead of a mapping with
public ContactMap()
{
Table("\"ENVIRO\".\"CONTACT\"");
i'd like to have a mapping like this
public ContactMap()
{
Table("\"CONTACT\"");
Is it possible, and how?