Using Entity Framework Core
Getting Started
The CData ADO.NET Provider for PayPal includes an Entity Framework Core 8.0 (EF Core) provider. This set of topics outlines how to build an EF data model that provides access to PayPal data. See Getting Started with EF Core for setup and installation details.
Reverse Engineering (Scaffolding)
The data model can be inferred automatically (scaffolded) via Package Manager Console commands. See Reverse Engineering (Scaffolding) to reverse engineer your model from live PayPal data.
Code-First
The code-first approach gives developers fine-grained control over their EF Core models. See Code-First Approach to define models manually in code.
Console Applications
EF Core Console Application explains how to use EF Core in a .NET console application.
ASP.NET Applications
EF Core ASP.NET Application shows how to integrate EF Core into an ASP.NET web application.