Mapping Oracle UDT containing associative array in C#
问题 I am working on a small training project which directed me to create an Oracle UDT that contains an associative array. The array is defined as follows: create or replace TYPE TRNG_AUTHORS_TAB AS TABLE OF VARCHAR2(50) ; The UDT then uses this as follows: create or replace TYPE TRNG_BOOK_OBJ AUTHID DEFINER AS OBJECT ( <SNIP normal variable mappings> AUTHORS TRNG_AUTHORS_TAB ) NOT FINAL; Now I am mapping this to a C# class. The TRNG_BOOK_OBJ is mapped as a UDT with an appropriate Factory. I