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 …
0
votes
How to build custom assertions in C#/VS ?
From these posts it looks like MbUnit already supports this with AreElementsEqualIgnoringOrder.
…
0
votes
Filling a form with C#
I've used the SDK from Mi-Co :
http://mi-corporation.com/page.php?pageid=13
It's awesome software that lets …
2
votes
(msvc# express) publish c# project to include a file (e.g. .MDB, .XML)
http://wix.sourceforge.net/
WiX - Windows Installer XML is an OS tool you can use to build an installer you can tell it where to put …
0
votes
Log combination of keyboard
You just need to check the Control.ModifierKeys to see if the control and/or shift keys were used.
…
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. …
0
votes
Controller/Static State Class in WinForms Application - Where to put?
I don't know if this is a better way, but I am having Structuremap create my controller and database instance.
The main form has no real code in it - it just loads the first set of controls an …
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 …
