I am trying to scaffold some classes from an Oracle database for use with a .NET Core Web API. I have installed the Oracle.EntityFrameworkCore nuget package, v2.18.0-beta3
Scaffold command - Scaffold-DbContext "User ID={UserId};Password={Password};Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(COMMUNITY=tcpcom.world)(PROTOCOL=tcp)(HOST={Host})(PORT={Port})))(CONNECT_DATA=(SID={SID})))" {Provider} -o Models
The error I receive: ORA-01017: invalid username/password; logon denied
I can use the connection string from the scaffold command to query the database and return records.
References:
StackOverflow question