GroupByStrategy.cs, line 96 buildObjects[uniqueKey] = outObject;
I've been trying to get a complicated groupBy map working and the code path ends up in the else condition of the Process method. In my case, uniqueKey is null and buildObjects ends up as an empty Hashtable. None of the lines of code in the else condition modify the uniqueKey value so when it gets to line 86 and attempts to insert into the hashtable, the parameter is null which throws an exception. Side question: I also noticed the comment "// temp ?, we don't support constructor tag with groupBy attribute". I assume that will change before 1.6 is released? Thanks, Bob

