I am looking for a C # code generator that automatically generates C # to access stored procedures in Oracle Database.
For example, if I have some packages on the DEV schema, for example:
- PACKAGE1 with FUNC1, FUN2
- PACKAGE2 with FUNC3, FUN4
The generator creates the code to start with C # the following code:
int a = PACKAGE1.FUNC1(12, 34, "hello");
Any clue?
source
share