Hi,
I am using LLBLGEN Pro 3.1, Sql server 2008 & Oracle 11i
I am trying to retrieve values from sql and oracle database, sql works fine but oracle gives me error "Specified cast is not valid.".
Table Defined as follows..
SQL Oracle
Id - Int Number(10,0)
Name - Varchar(64) Varchar(64)
LLBLGEN Mapping
SQL: Oracle
Id - long(System.Int64) long(System.Int64)
Database generic Code:
Method is defined like this...
public virtual System.Int32 Id
{
get { return (System.Int32)GetValue((int)RoleFieldIndex.Id, true); }
set { SetValue((int)RoleFieldIndex.Id, value); }
}
Error at this line: "get { return (System.Int32)GetValue((int)RoleFieldIndex.Id, true); }"
Please guide me on this issue...