2
votes
NHibernate 1.2 to 2.0 migration
Breaking changes in NHibernate 2.0
If you have good test coverage it's busywork.
Edit …
1
vote
Is it possible to use nHibernate with Paradox database?
Yes, sort of.
There is no support included in the trunk, you need to write your own dialect. Or you can port the Paradox diale …
4
votes
2
votes
Has anyone moved to NHibernate 2.0 in a production environment?
Yes..
Here are the gotchas (a more detailed discussion here):
Flush after Delete
Expression nam …
7
votes
IList.Cast<typeof(T)>() returns error, syntax looks ok
@Jonathan Holland you are incorrect. T is not a type nor a System.Type. T is a type parameter. typeof(T) returns the type of T. …
1
vote
IList.Cast<typeof(T)>() returns error, syntax looks ok
@Jonathan Holland
T is already a type parameter, you don't need to call typeof on it. TypeOf takes a type and returns its type parameter. …
30
votes
NHibernate ISession Flush: Where and when to use it, and why?
Briefly:
Always use transactions
Don't use Close(), instead wrap your calls on an ISession inside a using statement or manage t …
3
votes
Best practices for querying with NHibernate
To rid yourself of the XML, try Fluent NHibernate
Linq2NH isn't fully baked yet. The core team is working on a diff …
1
vote
NHibernate.MappingException: No persister for:
Should it be name="Id"? Typos are a likely cause.
Next would be to try it out with a non-generic test to make sure you're passing in the proper type parameter.
Can you …
2
votes
NHibernate, Sum Query
As an indirect answer to your question, here is how I do it without a named query.
var session = GetSession();
var criteria = session.CreateCriteria(typeof(Order))
.Add(R …
2
votes
How do I totally disable caching in nHibernate?
Use the IStatelessSession to bypass the first level cache: http://darioquintana.com.ar/blogging/?p=4
In order to use t …
3
votes
How do I select the Count(*) of an nHibernate Subquery’s results
var session = GetSession();
var criteria = session.CreateCriteria(typeof(Order))
.Add(Restrictions.Eq("Product", product))
.SetProjection(Projections …
0
votes
NHibernate nvarchar/ntext truncation problem
Try <property name="Value" type="string" length="4001" />
…
0
votes
What are best practices to implement security when using NHibernate?
http://weblogs.asp.net/fbouma/archive/2003/11/18/38178.aspx
…
0
votes
NHibernate : map to fields or properties ?
I map to properties because I use automatic properties.
Except for collections (like sets. Those I map to fields (access="field.camelcase-underscore") because I …
