I came across this today in a WCF contract:
[DataMember(IsRequired = true)]
public DateTime? LastModified { get; set; }
What are the consequences of IsRequired = True and a nullable DateTime? They appear to be contradictory to each other.
|
I came across this today in a WCF contract:
What are the consequences of
| ||||
|
feedback
|
|
Hope this similar contradictory case answer your question.
| |||||||
feedback
|
|
A guess: you MUST have a node for 'LastModified' (=required) but the contents can be empty (=value is null). | |||
|
feedback
|