-
I'd like to use Piranha with Oracle. There's Oracle EF core provider for .Net core. What should I do next to make it work? I'm new and open to learn. Really appreciate for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi there! Creating a EF Db implementation is merely about adding an implementation of
As we don't have the means to test or maintain a provider for Oracle we're not interested in adding it into our repository, but if you create one and publish it on NuGet we'll make sure to promote it on our website and documentation! Best regards |
Beta Was this translation helpful? Give feedback.
-
@tidyui Thank you!!! |
Beta Was this translation helpful? Give feedback.
Hi there! Creating a EF Db implementation is merely about adding an implementation of
Piranha.IDb
deriving fromPiranha.Db<T>
, aDbFactory
for running migrations, and then creating the actual migrations for Oracle. See theSqLite
implementation for reference:As we don't have the means to test or maintain a provider for Oracle we're not interested in adding it into our repository, but if you create one and publish it on NuGet we'll make sure to promote it on our website and documentation!
Best regards