Search Results

2
votes
1answer
427 views

Strict vs NonStrict NHibernate cache concurrency strategies

This question is about the difference between ReadWrite and NonStrictReadWrite cache concurrency strategies for NHibernate's second level cache. As I understand it, the difference between t …
3
votes

Getting stated with NHibernate. Real world project example?

The author of the NHibernate ASP.NET Best Practices article and went on to produce a newer sample called Sharp Architecture …
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 => …