Tagged Questions

0
votes
1answer
27 views

Nhibernate subclass mapping problem

I am using nhibernate subclass mapping to handle descriptions of objects of the system. Basically idea is to have a description class and make polymorphic associations by having su …
1
vote
1answer
12 views

What is the correct way to define many-to-many relationships in NHibernate to allow deletes but avoiding duplicate records

Hi, I've been fighting with an NHibernate set-up for a few days now and just can't figure out the correct way to set out my mapping so it works like I'd expect it to. There's a b …
1
vote
3answers
86 views

Is NHibernate still in active development for .NET

I heard somewhere that NHibernate for .NET will stop development because microsoft developed the enity framework. Is this true?
0
votes
1answer
16 views

NHibernate Many-to-Once Cascade

Hi, I have created the mapping shown below between Invoice and InvoiceDetail. When trying to update an Invoice, I notice an update statement for User as well. Why should “User” be …
0
votes
3answers
52 views

When should one avoid using NHibernate’s lazy-loading feature?

Most of what I hear about NHibernate's lazy-loading, is that it's better to use it, than not to use it. It seems like it just makes sense to minimize database access, in an effort …
1
vote
1answer
23 views

NHibernate Search with inheritance …

Hello guys... I have a Client class like that: public class Client { public Person Pers { get; set; } } And I have 2 Person´s child class : public class PersonType1 : Pers …
0
votes
3answers
32 views

NHibernate Mapping Question - Bizarre scenario

I have an interesting scenario where I have a given table that maps to an entity. However, there is another version of the table which gets populated as part of a nightly process a …
0
votes
1answer
15 views

In NHibernate, my check if entity is dirty fails.

Background Similar to this question, I need to determine if an entity in my NHibernate application is dirty or not. There is a "IsDirty" method on ISession, but I want to check a …
0
votes
1answer
14 views

How do you automap List<float> or float[] with Fluent NHibernate?

Having successfully gotten a sample program working, I'm now starting to do Real Work with Fluent NHibernate - trying to use Automapping on my project's class heirarchy. It's a …
0
votes
1answer
44 views

How to model this situation in ORM (NHibernate)?

I've always taken a data centric approach to web apps, and so the paradigm change involved when taking a pure OO approach using ORMs is still not completely natural to me, and evey …
1
vote
2answers
21 views

Comparing 2 NHibernate loaded object problem …

Hello guys... I have a class Client like that: public class Client { public Person Pers { get; set; } } And I have 2 Person´s child class : public class PersonType1 : Pers …
0
votes
0answers
26 views

NHibernate One-to-One to Many-to-One mapping and wrong SQL

Hey, I need a mapping which maps Point to Question and vice versa (one to one). Point can be created only with association to existing Question, while Question can be stand alone a …
1
vote
2answers
45 views

NHibernate Aggregate Subquery

Hi all, I have a problem with NHibernate that I don't seem to be able to find a simple way around. I have the following database: Game: ID, Score, Match_ID Match: ID A match c …
0
votes
0answers
11 views

NHibernate.Linq LIKE

How can I produce this query using NHibernate.Linq? WHERE this_.Name LIKE @p0; @p0 = 'test' // Notice NO % wild card Note, this is not Linq To Sql or Entity Framework. This is …
1
vote
2answers
22 views

NHibernate Inheritance - Discriminator-Value

Is it possible to have a discriminator that works like this with NHibernate? If the value equals String.Empty --> Class1 Else --> Class2 I already have a string column for Cultur …

1 2 3 4 5 148 next
15 30 50 per page