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#
- Host: GitHub
- URL: https://github.com/karenpayneoregon/oracle-northwind2024
- Owner: karenpayneoregon
- Created: 2024-03-02T23:10:13.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T16:35:19.000Z (over 2 years ago)
- Last Synced: 2025-03-23T18:16:48.591Z (over 1 year ago)
- Topics: csharp-core, dotnet-core, efcore8, oracle
- Language: C#
- Homepage: https://dev.to/karenpayneoregon/ef-corenorthwind-for-oracle-2kbk
- Size: 1.55 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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"
}
}
```