-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I use this with a custom IDatabaseCreator? #619
Comments
Hello @Bouke , Do you think you could create a runnable project with the issue? It doesn’t need to be your project, just a new solution with the minimum code to reproduce the issue. We currently do not support Best Regards, Jon |
Hello @Bouke, Since our last conversation, we haven't heard from you. Let me know if you need more information. Best regards, Jon |
Hello @Bouke Unfortunately, since we didn't hear from you I will close this issue. As previously mentioned, we need a runnable project to be able to assist you. We will reopen the issue if a project is received. Feel free to contact us for questions, issues or feedback. Best Regards, Jon |
Hi Jon, thank you for getting back to me. I think my initial report shows what I'm trying to do. I'm overriding the default database creator with my own. Then your extension fails, as it tries to identify the sql flavour at runtime by looking at which assembly the database creator is coming from. It doesn't recognise my custom database creator and then fails with the mentioned exception. |
Hello @Bouke , indeed, your initial report shows what you are trying to do. But my developer asked for a project to ensure he works on a solution that will work with your custom database creator. In short, if you want us to try to support it, we require a runnable project as previously asked. Best Regards, Jon |
I'm trying to use a custom
IDatabaseCreator
, but this project (v3.103.3) doesn't like that. It seems to be using the defining assembly of theIDatabaseCreator
against a hard-coded list of assembly names to determine which provider is being used. I don't this is the right way to determine the provider, as is now evident from the error I'm getting:The custom
IDatabaseCreator
is configured like this:The text was updated successfully, but these errors were encountered: