I have a web api post method that inserts a new row in my table in my Oracle database. I'm having trouble with the primary key of the table which is a sequence value. How do I do ...my_primary_key_seq.nextval... in Entity Framework? Currently this code wo...