Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1011 Bytes

readme.md

File metadata and controls

23 lines (16 loc) · 1011 Bytes

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 NuGet package is used for validation.

See also

Connection strings

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"
  }
}