Hi,
I have tried Number(9,0) but it didn't worked for me. I am explaining here my problem again in little more detail.
I am getting "Specific Cast is not valid." exception when i am doing fetch entity.
LLBLGen generated code property:
public virtual System.Int32 EmploymentStatus
{
get { return (System.Int32)GetValue((int)EmpGeneralFieldIndex.EmploymentStatus, true); }
set { SetValue((int)EmpGeneralFieldIndex.EmploymentStatus, value); }
}
Field definition Of Employment Status
SQL Server - Int
Oracle - Number(9,0)
Please see attachment for llblgen mapping details.
I have mapped sql server first and then added oracle. This error is only happening in oracle. your input is greatly appreciated.