I'm having a hard time understanding why I am getting a code contract violation on the following piece of code:
// servicequery is of type System.Data.Services.Client.DataServiceQuery<DividendData>
// therefore implements IQueryable
var serviceQuery = CreateDataService().DividendData;
Contract.Assume(serviceQuery != null);
Contract.Assume(serviceQuery.Any());
var data = serviceQuery
.Select(div => new {I = 2});
The violation is: CodeContracts: requires unproven: constructor != null right on the assignment.
If I change this code to the following, the violation goes away:
class resulttype
{
public int I { get; set; }
}
var serviceQuery = CreateDataService().DividendData;
Contract.Assume(serviceQuery != null);
Contract.Assume(serviceQuery.Any());
var data = serviceQuery
.Select(div => new resulttype() {I = 2});
My question is 'why?'.