3
votes
NHibernate ISession Flush: Where and when to use it, and why?
Starting in NHibernate 2.0, transactions are required for DB operations. Therefore, the ITransaction.Commit() call will handle any necessary flushing. If for some reason you aren't u …
0
votes
NHibernate.MappingException: No persister for:
Maybe it's just a typo in your post, but does your mapping file contain an <id> element? I believe that's necessary from NHibernate's perspective.
…
3
votes
How do I view the SQL that is generated by nHibernate?
There is a good reference for NHibernate logging at: How to …
7
votes
Best place for NHibernate documentation?
There is a relatively new site starting at NHForge that aims to be the definitive source for NHibernate-related documentation.
…
1
vote
How do I totally disable caching in nHibernate?
Totally disabling caching is something that should not be undertaken lightly. The first level cache acts as a persistence context and manages things like object identity during a Session. This i …
9
votes
Data Auditing in NHibernate and SqlServer
For NHibernate 2.0, you should also look at Event Listeners. These are the evolution o …
10
votes
Problem using SQLite :memory: with NHibernate
A SQLite memory database only exists as long as the connection to it remains open. To use it in unit tests with NHibernate:
1. Open an ISession at the beginning of your test (maybe in a [Set …
0
votes
How do you do a union of two tables in NHibernate?
You could use a named sql-query and do the union in raw SQL. NHibernate will be able to populate entity instances from the sql-query and return those as the query result. See …
2
votes
Reading Hibernate Properties from Web.config
You could put the connection string in the <connectionStrings /> section of the web.config and then have NHibernate get it from there. In the NHibernate settings, remove the <connection.c …
3
votes
NHibernate many-to-one and unique constraint violation
You need to assign a Country instance to the Country property of the Person instance (not just set the ID). Something like:
Person p = new Person();
p.Country = session.Load<Co …
3
votes
Are ActiveRecord/nHibernate SQL generation “safe”?
NHibernate (and by extension ActiveRecord) generate parameterized SQL statements of the form sp_executesql 'select blah from table where column = @p1', '@p1 varchar(10)', @p1 = 'drop database …
6
votes
NHibernate Transactions Best Practices
It really depends on your environment. For example, we use the Open-Session-In-View (Java link but the pattern is the same in .Net) pa …
0
votes
Use type of object in HQL where clause
NHibernate supports the same syntax as Hibernate in this case. See here for an example.
…
0
votes
Using ActiveRecord/NHibernate, can I Delete and Refresh without a Flush?
This is difficult to troubleshoot without knowing the contents of your mappings, but one possibility is that you have the ID property of the OrderItem mapped using an identity field (or sequence, e …
1
vote
NHibernate: how to enable lazy loading on one-to-one mapping
Lazy loading of one-to-one isn't supported unless the association is mandatory. See here for the reasoning.
It boils down to …
