0

I have a .net core project where i am using entity framework db first connecting to sql server which is working fine, now i have similar set of tables in oracle can i just run the project by changing connection string and provider to oracle? Or any major rework is needed to make this work?

1
  • Maybe. It depends. How "similar" is "similar"? If the names are identical, if there are no implementation-specific types, you may only have to change the connection string. Have you tried this? Commented Oct 7, 2022 at 7:08

1 Answer 1

1

You need to regenerate the DbContext mappings using reverse engineering

Sign up to request clarification or add additional context in comments.

2 Comments

If the names are identical and the mappings have no SQL Server-specific types or defaults, reverse engineering probably isn't needed
Thanks, may be in my case its needed but i get it what u mean.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.