I am using NHibernate to pull some data out of a legacy db, and I have found several cases where there is a foreign key, but the referenced row has been removed.

When I make my NHibernate mapping (using Fluent NHibernate like so:

References(d => d.Group)
    .WithColumns("groupId", "dataset")
    .SetAttribute("lazy", "true");

I get an unitialized proxy for Group when loading the root object, followed by an ObjectNotFoundException when I attempt to use it.

If I disable lazy loading, I get an ObjectNotFoundException immediately when loading the root.

Therefore: Is there a way to have NHibernate make the Group null when loading the root? Or is it possible to check the unitialized proxy somehow, to see if it will succeed in loading the row?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

I found the solution here - i needed to add

.SetAttribute("not-found", "ignore");

to the mapping.

link|improve this answer
4  
Thanks for this answer. I was having the same problem. Thanks also for having a userid named after an Aphex Twin track. By the way, in my version of FluentNH it's .NotFound.Ignore(). – David Jan 7 '11 at 13:54
thanks for noticing about the username ;) – mookid8000 Jan 7 '11 at 15:53
feedback

See Configuration.EntityNotFoundDelegate

link|improve this answer
That seems promising - but it seeems I have access to only the name of the missing entity and - very weird - what seems to be a random instance of the missing entity? Do you know how to put this interface to use? – mookid8000 Mar 6 '09 at 16:18
Haven't tried it, but you should get the entity name and id, see fisheye3.atlassian.com/browse/nhibernate/trunk/nhibernate/src/… – Mauricio Scheffer Mar 6 '09 at 18:40
This is the default implementation, the one that throws ObjectNotFoundException: fisheye3.atlassian.com/browse/nhibernate/trunk/nhibernate/src/… – Mauricio Scheffer Mar 6 '09 at 18:43
But it's weird - the parameter id of type object seems to be an instance of the entity that could not be found... do you know why that is? – mookid8000 Mar 7 '09 at 9:39
Weird... I see in the code that the delegate is being given the id at all times... – Mauricio Scheffer Mar 7 '09 at 15:23
show 2 more comments
feedback

have you verified that your referenced property is still loading lazily? In order for NHibernate to load references lazily, it needs to be sure that the reference is NOT NULL. When you set not-found="ignore", you are indirectly telling NHibernate that there is a possibility that the reference may not exist, hence preventing the NOT NULL constraint from being valid. In the case you've described above, you will not encounter an error but you may observe an eager call to the database to load your Group.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.