https://github.com/karenpayneoregon/efcore5-getting-started
Basics for EF Core 5 getting started. More examples will be added.
https://github.com/karenpayneoregon/efcore5-getting-started
csharp efcore5 entity-framework-core
Last synced: about 1 year ago
JSON representation
Basics for EF Core 5 getting started. More examples will be added.
- Host: GitHub
- URL: https://github.com/karenpayneoregon/efcore5-getting-started
- Owner: karenpayneoregon
- Created: 2020-11-19T15:32:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-10T00:52:16.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T05:41:23.268Z (about 1 year ago)
- Topics: csharp, efcore5, entity-framework-core
- Language: TSQL
- Homepage:
- Size: 308 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# About
Getting started with EF Core 5
**More coming**
# How to get EF Core 5.0
See [Microsoft documentation](https://devblogs.microsoft.com/dotnet/announcing-the-release-of-ef-core-5-0/#how-to-get-ef-core-5-0)
> EF Core 5.0 requires a .NET Standard 2.1 platform. This means EF Core 5.0 will run on .NET Core 3.1 or .NET 5, as well as other platforms that support .NET Standard 2.1. EF Core 5.0 does not run on .NET Framework.
# Entity Framework documentation
See [Microsoft documentation](https://docs.microsoft.com/en-us/ef/)
# Database providers
[Current providers](https://docs.microsoft.com/en-us/ef/core/providers/?tabs=dotnet-core-cli)
# Requires
- The following [database script](https://gist.github.com/karenpayneoregon/9bdf1a7d5310ac1d562b2326d79d6038).
- Before running the script inspect the path where the database will be created to match your SQL-Server installation.
- The following NuGet packages are needed for the json configuration file
- Microsoft.Extensions.Configuration
- Microsoft.Extensions.Configuration.FileExtensions
- Microsoft.Extensions.Configuration.Json
- Microsoft.Extensions.Configuration.Binder