Basically, I want to pass back the following in my WCF service:
[DataMember(IsRequired = true)]
IDictionary<int, MyObj> objects { get; set; }
How can I make it so that the MyObj can be null so that when I receive it on the other end it doesn't instantiate a blank item, but instead leaves it null?