Okay, since this question was posted, NHibernate 3 was released - maybe something is possible now?
I'm not willing to let this go - I want to use the null-object pattern, and I'm not going to be satisfied with "you can't", so let's think about ways to achieve this!
One idea I've come across in several posts and notes around the web, is to use two properties - one with public (unmapped) and one with private (mapped) access - so the get-accessor for the public property would be something like return MyPrivate ?? MyType.NullObject ... I've eliminated that idea, because it creates problems with the query interface - you can't query on the public property, because it's not mapped. So we can forget that approach.
I have two ideas I have not seen explored anywhere:
Use an interceptor to change the property value before/after read/write.
Someone mentioned an interceptor won't work, but bear with me... in pseudo-code:
class Foo
{
public Bar Bar { get; set; }
}
class Bar
{
public static Bar None;
}
class MyInterceptor
{
public void AfterLoad(IEntity object)
{
foreach (property in object)
if (property.type == typeof(Bar) && property.value == null)
object[property].value = Bar.None;
}
public void BeforeSave(IEntity object)
{
foreach (property in object)
if (property.type == typeof(Bar) && property.value == Bar.None)
object[property].value = null;
}
public void AfterSave(IEntity object)
{
foreach (property in object)
if (property.type == typeof(Bar) && property.value == null)
object[property].value = Bar.None;
}
}
In short, substitute nulls with the null-object on load; before saving, substitute null-object with an actual null-value, and after saving, substitute back the null-object.
When using the query API, of course you would need to query for actual null-values, but if you have some sort of criteria-builder or factory-class over the query API, you can account for that there.
Extend your type to a dedicated null-object type and make it non-persistent. Somehow.
Just a thought - suppose you were to extend your type into a dedicated null-object-type. Something along the lines of:
class Bar
{
public static NullBar; // instace of NullBar
}
class NullBar : Bar
{
// ...
}
Now that NullBar is a dedicated type extending Bar, can we somehow tell NHibernate NOT to map the Nullar type, even though it extends Bar, which is mapped?
Those are my ideas - either of those sound plausible?
(I'm an NHibernate noob, btw - but I'm persistent, and not in the sense that you can save me and set me aside for later.)