I keep getting the error System.InvalidCastException: Specified cast is not valid. during runtime. RewardJoinType could be null in the db.
This is the line of code where the cast fails:
c.rewardJoinType = (RewardJoinType)reader.GetInt16();
'reader.GetInt16()' threw an exception of type 'System.InvalidCastException' short {System.InvalidCastException}
In a class I've got the following lines of code:
private RewardJoinType? rewardJoinType;
...some other code
c.rewardJoinType = (RewardJoinType?)reader.GetInt16();
...some other code
conn.AddParam("@rewardJoinType", (int?)rewardJoinType);
...some other code
public RewardJoinType? RewardJoinType
{
get { return rewardJoinType; }
set { rewardJoinType = value; }
}
And here's the enum itself
public enum RewardJoinType
{
Auto,
Manual
}
Is it because by default enum is Int32 and even though I've got it as nullable it's not able to cast a null Int16?
We handle DBNull for the Int16 like so already in our reader:
public short GetInt16()
{
columnIndex++;
return reader.IsDBNull(columnIndex) ? (short)0 : reader.GetInt16(columnIndex);
}
