Any good C # code generator for using oracle stored procedures?

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?

+2
source share
4 answers

MyGeneration is open source, template driven, and templates can be written in C #. So that would satisfy your needs, or maybe even a template of them already.

+2
source

CodeFluent Entities - , SQL- Oracle:

  • ( )
  • ( Oracle)
  • ()

(#) .

+2

See also 1 and 2 .

0
source

All Articles