We are investigating LLBL and Oracle 11.2 We have ODP.Net installed and can add stored procedures to an EF 6 project in the designer.
When we Reverse-Engineer a Stored procedure, one of the Out Parameters, "XSlowMoveInv", is a "REF CURSOR" and as such when we try and generate the project, we get an error:
**The Stored Procedure Call 'Apps.XxWebXXXX' contains parameter 'XSlowMoveInv' which type is set to 'object (System.Object)' **
Given I can not change the Oracle database in any way, what is the best option to generate the c# EF 6 code so that we can call the stored procedure and get back a value to show to our team as a "Hello World" demo.
I am open to other frameworks like EF Core if that is better to use.