https://github.com/leodeveloper/entityframworkinmemory
One of the most exciting features in the new version of Entity Framework (Entity Framework Core 1.0) is the addition of an in-memory data provider. This makes it possible to prototype applications and write tests without having to set up a local or external database. When you’re ready to switch to using a real database, you can simply swap in your actual provider. In this tutorial, I’ll show you how to set up the Entity Framework Core InMemory provider and use it to prototype a simple ASP.NET Core API
https://github.com/leodeveloper/entityframworkinmemory
Last synced: about 1 year ago
JSON representation
One of the most exciting features in the new version of Entity Framework (Entity Framework Core 1.0) is the addition of an in-memory data provider. This makes it possible to prototype applications and write tests without having to set up a local or external database. When you’re ready to switch to using a real database, you can simply swap in your actual provider. In this tutorial, I’ll show you how to set up the Entity Framework Core InMemory provider and use it to prototype a simple ASP.NET Core API
- Host: GitHub
- URL: https://github.com/leodeveloper/entityframworkinmemory
- Owner: leodeveloper
- Created: 2018-08-02T15:10:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-02T17:03:05.000Z (over 7 years ago)
- Last Synced: 2023-12-08T11:41:03.795Z (over 2 years ago)
- Language: C#
- Size: 512 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EntityFramworkInmemory
One of the most exciting features in the new version of Entity Framework (Entity Framework Core 1.0) is the addition of an in-memory data provider. This makes it possible to prototype applications and write tests without having to set up a local or external database. When you’re ready to switch to using a real database, you can simply swap in your actual provider. In this tutorial, I’ll show you how to set up the Entity Framework Core InMemory provider and use it to prototype a simple ASP.NET Core API