Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a null error on my DTO object at runtime:

enter image description here

I didn't understand because column is nullable:

[DataContract]
public class SearchParametersCompanyDTO
{
    public SearchParametersCompanyDTO();

    [DataMember]
    public CompanyColumnsEnumDTO? Column { get; set; }
    [DataMember]
    public int PageIndex { get; set; }
    [DataMember]
    public int PageSize { get; set; }
    [DataMember]
    public string Term { get; set; }
}

[DataContract]
public enum CompanyColumnsEnumDTO
{
    [EnumMember]
    CompanyName = 0,
    [EnumMember]
    City = 1,
    [EnumMember]
    PostCode = 2,
}

It must be a conversion problem because null is accepted on Column:

        var dto = new SearchParametersCompanyDTO
        {
            PageIndex = pageIndex,
            PageSize = defaultPageSize,
            Term = term,
            Column = null
        };

Any idea?

share|improve this question
1  
I know this comment is off-topic, but bravo for asking a clear, detailed, answerable question. I see so many terrible questions on here, this is how it should be done. – jadarnel27 Apr 12 '12 at 14:28

3 Answers

up vote 4 down vote accepted

You're trying to cast a null value to an enum type (rather than a nullable enum type). I'm guessing you actually want to change your cast to:

Column = (CompanyColumnsEnumDTO?) column
share|improve this answer
Thank you guys. – Bronzato Apr 12 '12 at 14:45

The problem here is you're casting the value column into a non-nullable value CompanyColumnsEnumDTO. Based on the exception it looks like column is null here and casting to a non-null appropriately throws an exception. Did you mean to cast to CompanyColumnsEnumDTO? instead?

share|improve this answer
+1 That last question sounds like a compiler error! :-) – phoog Apr 12 '12 at 15:02

You need to cast to (CompanyColumnsEnumDTO?) instead of (CompanyColumnsEnumDTO)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.