I'm looking for a C# code generator which generate C# automatically to access stored procedures on Oracle Database.
For instance, if I have some packages on schema DEV like:
- PACKAGE1 with FUNC1, FUN2
- PACKAGE2 with FUNC3, FUN4
The generator creates code to run from C# the following code:
int a = PACKAGE1.FUNC1(12, 34, "hello");
Any clue?