Hi,
new to .net ef core and using visual studio code
Looking at tutorial at
https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity?view=aspnetcore-2.2&tabs=netcore-cli
want to use against an existing oracle schema we have which hosts a variety of datawarehouse tables and want to make sure command below has no affect on these existing tables
dotnet ef database update
assume this command simply creates/updates tables required by the .net application in question rather than delete the entire database and recreate.
Could someone please confirm?
Also to use this against oracle table do we need to just install the ef core beta and change the appsettings.json file to below?
"ConnectionStrings": {
"DefaultConnection": "User Id=<schema>;Password=<pwd>;Data Source=<SID>;"
},
Thanks