Search Results

1
vote
2answers
719 views

Simple way to create an ERD for a database design review.

I am working on a new application that uses a jet (MS Access) database. I have built the database using FluentNHibernate's AutoMapping feature from my C# objects. I need to present this da …
1
vote

NHibernate and Multiple Database backends - Architecture question

The data types NHibernate uses depends on the Dialect used in your configuration file. When it processes the xml it looks up the proper data type dependent on this dialect for each field. You would …
7
votes

NHibernate SchemaExport does not create tables when “script” is false

The SchemaExport is part of the Hbm2Ddl utility which is really separate from NHibernate functionality. It does not use "show_sql" which is used while NHibernate is running only. To get a …
0
votes

Which algoritm to use with many-to-many relation in NHibernate

If you want the new tag to be in the database when you check it each time you need to commit the transaction after you save to put it there. Another approach would be to read the tags into …
1
vote

NHibernate session management and lazy loading

I am working on a similar application. I am using one session that I keep open. Whenever I write to the database I use begin/commit transaction which does not close the underlying session. …
2
votes

Fluent NHibernate AutoMapping, supposed to save time but this has me pulling my hair out

Are you using the latest version of FNH and NHibernate 2.1 RTM? I am not so sure about your Overrides of the Id code. Have you tried without this and having an Id in each table? He …