Hello,
Is there an example on how you can execute a stored procedure from oracle entity framework?
I created a new ADO.net entity model and included the tables and the stored procedure and generated the model. I have a stored procedure
with two input parameters and one output parameter. Thanks. Any examples would be great.
i can see that i can access the stored procedure by
context.MyStoredProcedure(inparam1,inparam2,outparam)
But i am not sure how to call it. Thanks!
I am using VS 2017 and Oracle Entity Framework 6
Thanks!