Reputation: 39
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
Reputation: 41759
You need to regenerate the DbContext mappings using reverse engineering
Upvotes: 1