Learn how to work with Oracle database with Microsoft Entity Framework Core (at this time version 8) database first using EF Power Tools to reverse engineer tables in the database. The database has table names and column names uppercased which will need to be addressed to conform to current coding standards. Rather than data annotations FluentValidation NuGet package is used for validation.
- FluentValidation tips for more indepth about FluentValidation
Are stored in appsettings.json. Once creating the database, add your connection string to Development
property below.
{
"ConnectionsConfiguration": {
"ActiveEnvironment": "Development",
"Development": "Your connection string",
"Stage": "Stage connection string goes here",
"Production": "Prod connection string goes here"
}
}