An open API service indexing awesome lists of open source software.

https://github.com/karenpayneoregon/oracle-northwind2024

For article to teach the basics for working with Oracle and EF Core with C#
https://github.com/karenpayneoregon/oracle-northwind2024

csharp-core dotnet-core efcore8 oracle

Last synced: about 2 months ago
JSON representation

For article to teach the basics for working with Oracle and EF Core with C#

Awesome Lists containing this project

README

          

# Working with EF Core for Oracle

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](https://docs.fluentvalidation.net/en/latest/) NuGet package is used for validation.

## See also

- [FluentValidation tips](https://dev.to/karenpayneoregon/fluentvalidation-tips-c-3olf) for more indepth about FluentValidation

## Connection strings

Are stored in appsettings.json. Once creating the database, add your connection string to `Development` property below.

```json
{
"ConnectionsConfiguration": {
"ActiveEnvironment": "Development",
"Development": "Your connection string",
"Stage": "Stage connection string goes here",
"Production": "Prod connection string goes here"
}
}
```