Documentation
SolutionDeveloperComplianceProjects
  • Getting Started
  • Technology
    • Application Framework
    • Object-Relational Mapping
    • Security Framework
    • Architecture Pattern
    • API Management
  • Environment
    • Development Tool
    • Database Server
    • Web Server
  • PRESENTATION
    • Design Material
    • HTML Helpers
    • Icon Images
    • Custom CSS
    • JQuery Plugin
      • DataTables
      • Tabs
      • Date Picker
      • Calendar
      • Chart
      • Treeview
    • Client Script
      • Open Modal
      • Close Modal
      • Handle return data
      • Load Content
      • Change Hash
      • Change Title
      • Get actual Hash
      • Get Content
      • Update Content
      • Delete Content
      • Get Partial Content
      • Get Partial Content Async
      • Update Partial Content
      • Update Partial Content Async
      • Delete Partial Content
      • Get Action
      • Update Action
      • Delete Action
      • Cascading Dropdown
      • Display Document
    • MVC View
  • BACKEND
    • Base Controller
    • Controller
    • Base Model
    • View Model
    • Class Utility
      • Constant Values
      • Global Properties
      • Option Helper
      • Setting Helper
    • Data Repository
      • Read Columns
      • Read All Columns
      • Read First Record
      • Read by Primary Key
      • Find Record
      • Insert Record
      • Update Record
      • Delete Entity
      • Delete by Criteria
      • Delete by Primary Key
      • Counting Record
      • Check Exist
      • Generate Row-Id
    • Unit Of Work
    • Data Entity
  • Application Features
    • Account Management
    • Navigation Editor
    • Access Control
  • Examples
    • Simple Page
    • Master Detail
    • Editor Template
Powered by GitBook
On this page
  • General information
  • Entity Framework
  • Video
  • Installation via Visual Studio
  1. Technology

Object-Relational Mapping

PreviousApplication FrameworkNextSecurity Framework

Last updated 2 years ago

General information

"Object-Relational Mapping" refers to frameworks that are designed to automate processes related to database, such as reading, updating and deleting data. Usually these processes require extensive code to be implemented. By using object-relational mappers, it is made easy for developers to interact with databases.

Entity Framework

The Entity Framework is an open-source object-relational mapper for applications developed in the .NET Framework. It encompasses the retrieval of data, their saving as well as their conversion into .NET objects or the conversion of .NET objects into data. The Entity Framework used to be part of the .NET Framework but is now provided as a separate entity.

Video

Installation via Visual Studio

  1. Right-click on project

  2. Select "NuGet Packages"

  3. Search for "Microsoft.EntityFrameworkCore" (in "Browse" tab)

  4. Download package for the server you are using (e.g."SqlServer")