Search Results

7
votes

fluent nhibernate select n+1 problem

It sounds to me that you want to pursue the approach of using your domain model rather than creating a specific nhibernate query to handle this scenario. Given this, I would suggest you take a look …
0
votes

Using nHibernate and the repository pattern, need some direction

Perhaps you misheard or someone mispoke - the Repository pattern is supposed to expose collection like behavior, not operate on collections. Just like you can add, remove and search for items in a …
1
vote

NHibernate: using an existing public int field as record Id

I've also answered this question on the mailing list (it was cross posted there) but I thought it wo …
0
votes

How to map Type with Nhibernate (and Fluent NHibernate)

I'm curious, why don't you do this instead public class DataType { ... private string _typeOfContent; public virtual Type TypeOfContent { get …
0
votes

Generate table indexes using Fluent NHibernate

In more recent versions of Fluent NHibernate, you can call the Index() method to do this rather than using SetAttribute (which no longer exists): Map(x => x.Prop1).Index("idx__Prop1"); …
2
votes

Fluent NHibernate and Schema update/execute - indexes on foreign keys

I think the 'index' attribute on a column mapping element is what you are after. If you're on the latest version of FNH, you can set this for a one-to-many like so: HasMany(x => …
1
vote

Fluent NHibernate - unit-testing a one-to-many *inverse* mapping

I know this has already been sorted out on the mailing list but we might aswell put the answer on stack overflow too. The PersistenceSpecification class has a CheckList method. Here's an ex …