I am using nHibernate to search for mismatching strings.
The model is this:
PlayerGrouphas a fieldExpectedPlaylistKeyPlayerhas a fieldLastReportedPlaylistKey.One
PlayerGrouphas manyPlayers.
I want to perform a query to find all players that don't match the group's expected playlist.
My code is as follows:
PlayerGroup playerGroupAlias = null;
Player playerAlias = null;
var query = this.Session.QueryOver<Player>(() => playerAlias)
.JoinAlias(() => playerAlias.PlayerGroup, () => playerGroupAlias)
.Where(
() => (playerGroupAlias.ExpectedPlaylistKey != playerAlias.CurrentlyReportedPlaylistKey)
);
I've examined the generated SQL, and it's using this where clause:
WHERE not (playergrou1_.ExpectedPlaylistKey = this_.CurrentlyReportedPlaylistKey)
Unfortunately, if one of these values is NULL then this returns false, even if the other value is not null.
How can I fix my nHibernate query so it handles the case if either string is NULL?