RESTworld.EntityFrameworkCore
1.0.0
See the version list below for details.
dotnet add package RESTworld.EntityFrameworkCore --version 1.0.0
NuGet\Install-Package RESTworld.EntityFrameworkCore -Version 1.0.0
<PackageReference Include="RESTworld.EntityFrameworkCore" Version="1.0.0" />
<PackageVersion Include="RESTworld.EntityFrameworkCore" Version="1.0.0" />
<PackageReference Include="RESTworld.EntityFrameworkCore" />
paket add RESTworld.EntityFrameworkCore --version 1.0.0
#r "nuget: RESTworld.EntityFrameworkCore, 1.0.0"
#:package RESTworld.EntityFrameworkCore@1.0.0
#addin nuget:?package=RESTworld.EntityFrameworkCore&version=1.0.0
#tool nuget:?package=RESTworld.EntityFrameworkCore&version=1.0.0
RESTworld
RESTworld is a framework which utilizes other common frameworks and patterns alltogether to enable easy and fast creation of a truly RESTful API.
Used frameworks and patterns
- Entity Framework Core for data access
- ASP.Net Core for hosting
- HAL for providing hyperlinks between resources
- OData for query support on list endpoints
- AutoMapper for mapping between Entities and DTOs
Pipeline
The most basic pipeline has the following data flow for a request on a list endpoint:
- Request
- Controller selection through ASP.Net Core
- Query parsing through OData
- Controller method calls business service method
- Service gets the data through Entity Framework Core
- Entity Framework Core translates the query into SQL and gets the data from the database
- Business service translates Entities into DTOs through Automapper
- Controller wraps the result in a HAL response
- Result
Usage
Solution structure
If your API gets the name MyApi, structure your Solution with the following Projects:
- MyApi (ASP.Net Core Web API)
- References RESTworld.AspNetCore, MyApi.Business
- Contains your startup logic and your custom controllers
- MyApi.Business
- References RESTworld.Business, MyApi.Data
- Contains your AutoMapperConfiguration and your custom services
- MyApi.Data
- References RESTworld.EntityFrameworkCore, MyApi.Common
- Contains your Entity Framework Core Database Model including Entities and Migrations
- MyApi.Common
- References RESTworld.Common
- Contains your DTOs and Enums
Startup configuration
Add the following to your appsettings.json
"RESTworld": {
"MaxNumberForListEndpoint": <whatever is an appropriate number of resources for one page>
}
Change your Program.cs to the following
namespace MyApi
{
public class Program
{
public static void Main(string[] args)
{
RESTworld.AspNetCore.Program<Startup>.Main(args);
}
}
}
Change or add your Startup class
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using RESTworld.Business.Abstractions;
using MyApi.Common.Dtos;
using MyApi.Data;
using MyApi.Data.Models;
using MyApi.Business;
namespace MyApi
{
public class Startup : RESTworld.AspNetCore.StartupBase
{
public Startup(IConfiguration configuration)
: base(configuration)
{
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
base.Configure(app, env);
// Optionally migrate your database to the latest version during startup
MigrateDatabase<TDbContext>(app);
}
// This method gets called by the runtime. Use this method to add services to the container.
public override void ConfigureServices(IServiceCollection services)
{
// Database
services.AddDbContextFactoryWithDefaults<MyDatabase>(Configuration);
services.AddODataModelForDbContext<MyDatabase>();
// Default pipeline
services.AddRestPipeline<TContext, TEntity, TCreateDto, TGetListDto, TGetFullDto, TUpdateDto>();
// With custom service
services.AddRestPipelineWithCustomService<TContext, TEntity, TCreateDto, TGetListDto, TGetFullDto, TUpdateDto, TService>();
// With custom controller
services.AddRestPipelineWithCustomController<TContext, TEntity, TCreateDto, TGetListDto, TGetFullDto, TUpdateDto, TController>();
base.ConfigureServices(services);
}
protected override void ConfigureAutomapper(IMapperConfigurationExpression config)
=> new AutoMapperConfiguration().ConfigureAutomapper(config);
}
}
Add an AutoMapperConfiguration to your MyApi.Business project
using AutoMapper;
using MyApi.Common.Dtos;
using MyApi.Common.Enums;
using MyApi.Data.Models;
namespace MyApi.Business
{
public class AutoMapperConfiguration
{
public void ConfigureAutomapper(IMapperConfigurationExpression config)
{
config.CreateMap<TEntity, TDto>();
// Add more mappings
}
}
}
That's it. Now you can start your API and use a HAL browser like https://chatty42.herokuapp.com/hal-explorer/index.html#uri=https://localhost:5001 to browse your API.
If you are using a launchSettings.json, I suggest to use this as your "launchUrl".
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net5.0
- Microsoft.EntityFrameworkCore.SqlServer (>= 5.0.4)
- RESTworld.Common (>= 1.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on RESTworld.EntityFrameworkCore:
| Package | Downloads |
|---|---|
|
RESTworld.Business
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 9.0.5 | 31 | 3/12/2026 |
| 9.0.4 | 84 | 3/10/2026 |
| 9.0.3 | 150 | 2/10/2026 |
| 9.0.2 | 127 | 2/9/2026 |
| 9.0.1 | 406 | 12/15/2025 |
| 9.0.0 | 582 | 11/11/2025 |
| 8.3.0 | 294 | 11/10/2025 |
| 8.2.1 | 416 | 9/19/2025 |
| 8.2.0 | 472 | 6/19/2025 |
| 8.1.1 | 390 | 4/15/2025 |
| 8.1.0 | 404 | 3/17/2025 |
| 8.0.1 | 587 | 1/26/2025 |
| 8.0.0 | 469 | 11/20/2024 |
| 7.2.1 | 913 | 10/11/2024 |
| 7.2.0 | 431 | 9/27/2024 |
| 7.1.4 | 317 | 9/20/2024 |
| 7.1.3 | 660 | 7/10/2024 |
| 7.1.2 | 393 | 6/4/2024 |
| 7.1.1 | 1,042 | 1/9/2024 |
| 1.0.0 | 1,167 | 3/31/2021 |