我有一个特定的单元测试在我的个人电脑上正常运行,但每当我让TFS运行测试时,它都会失败并出现以下异常 -
System.InvalidOperationException:来自的指定强制转换 物化的'System.Int32'类型为可空的'Country'类型不是 有效的。
通过跟踪堆栈跟踪,它有以下方法的问题 -
public IEnumerable<IAddress> AddressSelectAll(long userID)
{
using (var context = new Entities())
{
var addresses = context.Customers
.Where(x => x.UserId == userID)
.Select(y => new Address
{
Address1 = y.Address1,
Address2 = y.Address2,
Address3 = y.Address3,
AddressID = y.AddressId,
City = y.City,
Country = y.Country != null ? (Country)y.Country : (Country?)null,
Postcode = y.Postcode,
State = y.State,
RecordEntryDate = y.RecordEntryDate,
Type = (AddressType)EFFunctions.ConvertToInt32(y.AddressType),
UserID = y.UserId
}).ToList();
return addresses.ToList();
}
}
如果它是相关的(怀疑是),我的EFFunctions类被定义为 -
public static class EFFunctions
{
[EdmFunction("Model", "ConvertToInt32")]
public static int ConvertToInt32(string text)
{
var result = string.IsNullOrEmpty(text) ? 0 : Convert.ToInt32(text);
return result;
}
}
我的.edmx中有以下内容 -
<Function Name="ConvertToInt32" ReturnType="Edm.Int32">
<Parameter Name="v" Type="Edm.String" />
<DefiningExpression>
CAST(v AS Edm.Int32)
</DefiningExpression>
</Function>
有人能告诉我我做错了吗?
答案 0 :(得分:5)
您的问题可能与行(或行的一部分)
有关Country = y.Country != null ? (Country)y.Country : (Country?)null
您在一个案例和国家/地区中将值转换为国家/地区?在另一个。也许您可以将值替换为-1,或者可能更可靠地将Customer.Country类型更改为Country?而不是国家。