Hi All,
I am using LLBLGen to write data to a table in Oracle. this table has a column (BILLINGID) that is a primary key and Auto-Increments the Value of that column...
ie.. row 1 = 1, row 2 = 2 etc....
the problem I am having is that when I use LLBLGen to do a insert, I always get this error.
The given key was not present in the dictionary (from the Insertentity code in the LLBLGen generated code)
If I set the BILLINGID myself to a number then it will insert fine. there is a trigger set up for this Column to auto increment and I put this into the .conf file.
"<add key="OracleTriggerSequences" value="true" />"
does anyway have any advice on how I can fix this...it looks like I have to retrieve the next sequence value but I am not sure how to do that.
thanks in advance.
Gerard