Tutorial by Topics: entityframework

Entity Framework (EF) is an object-relational mapper (ORM) that enables .NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Entity Framework allows you to create a model by writi...
Entity Framework (EF) Core is a lightweight and extensible version of the popular Entity Framework data access technology. EF Core is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code...
This article is to introduce a simple and professional practice to use Entity Framework. Simple: because it only needs one class (with one interface) Professional: because it applies SOLID architecture principles I don't wish to talk more.... let's enjoy it!
SQLite is a self-contained, serverless, transactional SQL database. It can be used within a .NET application by utilizing both a freely available .NET SQLite library and Entity Framework SQLite provider. This topic will go into setup and usage of the Entity Framework SQLite provider.
This topic discusses how to map one-to-one type relationships using Entity Framework.
The topic discusses how you can map one-to-many and many-to-many relationships using Entity Framework Code First.

Page 1 of 1