Hi
i m getting the error on subject when i build my solution.
here is the code section that gives the error:
/// <summary> The Age property of the Entity User<br/><br/>
/// </summary>
/// <remarks>Mapped on table field: "User"."Age"<br/>
/// Table field type characteristics (type, precision, scale, length): TinyInt, 3, 0, 0<br/>
/// Table field behavior characteristics (is nullable, is PK, is identity): true, false, false</remarks>
public virtual short Age
{
get
{
object valueToReturn = base.GetCurrentFieldValue((int)UserFieldIndex.Age);
**return (Nullable<System.Byte>)valueToReturn;**
}
set { SetNewFieldValue((int)UserFieldIndex.Age, value); }
}
bold line is gives the error.
any ideas?
thanks