I'm using NHibernate to access both an Oracle and a SQL Server CE database. I'm syncing the Oracle db to SQL Server CE to be able to use the program offline.
I'm forced to use the user concept in Oracle an does so by the "."-notation in the map file. So for example to get the USER table, my map file looks like this:
<class name="DatabaseLayer.Classes.Users" lazy="false" table="ADM.USER">
In the SQL Server CE db I have simply created a table with the name ADM.USER
and using MSF I managed to sync the data to my offline db. However when trying to load from the table with NHibernate I get an error message saying that there are no USER
table... It's like it just has forgotten the ADM.