I am using Visual Studio 2017 with Entity Framework 6.2 - Database First. I am also using Oracle.ManagedDataAccess v18.3.0 and Oracle.ManagedDataAccess.EntityFrameork v18.3.0.
Through EF, I am trying to map to a procedure that returns a ref cursor. I have been successful with the following:
But this is where I begin to run into a problem:
- Through the Model Browser, I right clicked on the procedure and opened up the "Add Function Import" window.
- I selected "Complex" in "Returns a Collection Of" and clicked "Get Column Information", but I received the following error:
- An exception of type "System.NotSupportedException" occurred while attempting to get columns information. The exception message is: The specified type is not supported by this selector."
I should be able to do this correct? How does the implicitRefCursor play a role in the EF set up of the stored procedure I want to be able to use?
What am I doing wrong?