Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
Chris Hairr edited this page Mar 19, 2017 · 3 revisions

Entity Framework

Entity Framework is Microsoft's data access platform. Entity Framework Core (EF Core) is the next generation intended for use with .NET Core applications. It is much more lightweight than its predecessor, and enables easy-to-use data access for ASP.NET Core and UWP applications. Read more about EF Core here.

MongoDb

MongoDb is a free, open-source, and highly popular No-SQL (ie: schema-less) structured document database. Records are stored concisely as single documents that contain all relevant data and metadata - including nested sub-documents and arrays - without the need for expensive joins to reconstruct the data when querying the database.

MongoDb supports a wide range of operating systems and CPU architectures, making it an ideal database solution for many projects where other database technologies would be prohibitively expensive. This project opens the door to MongoDb for .NET applications using EntityFrameworkCore. Click here to get started.

Clone this wiki locally