I did find a errors in the NHibernate source.
In 'AbstractNullnessCheckNode.cs' and 'BinaryLogicOperatorNode.cs'
files there are these lines:
String[] splits = StringHelper.Split( ", ", nodeText );

If think the author wanted to make a sting like this "value1, value2"
to be split in 2 parts but the StringHelper.Split method splits it in
3 parts because the method splits on characters and not on strings. So
I changed the lines to:
string[] splits = nodeText.Split(new[] {", "},
StringSplitOptions.RemoveEmptyEntries);
and the error went away.

I also saw a similar thing in 'IncrementGenerator.cs', it might have
to be changed there too.

Bas

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to nhus...@googlegroups.com.
To unsubscribe from this group, send email to 
nhusers+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to