I have one oracle type which is an object
TYPE xyz AS OBJECT(col1 VARCHAR2(10),
col2 NUMBER,
col3 VARCHAR2(100));
and one oracle type which is an table
TYPE xyz_table AS TABLE OF xyz
and this type is used as an input parameter in an stored procedure
I want to call this stored procedure from my .net core application and pass multiple values in this parameter.
Any idea how I can achieve this?
Currently I am using following namespaces in my .net core application for oracle:
using Oracle.ManagedDataAccess.Client;
using Oracle.ManagedDataAccess.Types;
I have done this in SQL Server but not able to find any working solution for Oracle and .net core