I've run across a problem storing nullable enumerations with the 10gen
C# driver, using latest source from github. It throws the following
exception on insert:
"EnumSerializer.Serialize cannot be used with nominal type:
System.Nullable`1[[NullableEnumTest.ItemType]]"
This gist is a very small console app reproduction of the issue:
https://gist.github.com/818600
It works as long as it is still set to null, but once given a value it
throws the exception. I plan to step through the source and see if I
can figure it out, but wanted to go ahead and post this here in case I
was missing something obvious.