Keep Learning
Keep Learning

Reputation: 39

Migrate entity framework core db first sql server to oracle

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?

Upvotes: 0

Views: 482

Answers (1)

ErikEJ
ErikEJ

Reputation: 41759

You need to regenerate the DbContext mappings using reverse engineering

Upvotes: 1

Related Questions