Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
255 views

Is the DataMember IsRequired attribute in combination with a Nullable type contradictory?

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 ...
5
votes
1answer
195 views

Adding a DataMember to an existing DataContract in WCF

I would like to add a DataMember to one of my DataContracts. I would like to know how existing servers and clients will behave in the presence of a new DataMember if one of the parties isn't updated. ...
0
votes
1answer
210 views

MVC HtmlHelper vs FluentValidation 3.1: Troubles getting ModelMetadata IsRequired

I created a HtmlHelper for Label that puts a star after the name of that Label if associated field is required: public static MvcHtmlString LabelForR<TModel, TValue>( this ...
0
votes
0answers
46 views

How find MaxLength and IsRequired for EF 4.1 object property?

I'm using EF 4.1 just fine but can't seem to find where the object properties are hidden. In VS2010, in the edmx diagram, I can see the properties for any of my object property values but cannot find ...
0
votes
1answer
46 views

WCF IDictionary<TKey, TValue> - How to indicate that TValue can be null?

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 ...