EfCore.GenericServices.AspNetCore 3.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package EfCore.GenericServices.AspNetCore --version 3.0.1
NuGet\Install-Package EfCore.GenericServices.AspNetCore -Version 3.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EfCore.GenericServices.AspNetCore" Version="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EfCore.GenericServices.AspNetCore --version 3.0.1
#r "nuget: EfCore.GenericServices.AspNetCore, 3.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EfCore.GenericServices.AspNetCore as a Cake Addin
#addin nuget:?package=EfCore.GenericServices.AspNetCore&version=3.0.1

// Install EfCore.GenericServices.AspNetCore as a Cake Tool
#tool nuget:?package=EfCore.GenericServices.AspNetCore&version=3.0.1

EfCore.GenericServices.AspNetCore

This library provides converters from EfCore.GenericService and EfCore.GenericBizRunner status results to into two ASP.NET Core formats.

  1. ASP.NET Core MVC or Razor pages - copy to ModelState.
  2. ASP.NET Core Web API - form correct HTTP response.

The library also contains code for that user EfCore.GenericService or EfCore.GenericBizRunner. See information at end of the Readme file.

*NOTE: If you are interested in using EfCore.GenericService or EfCore.GenericBizRunner in Web APIs then see the article "How to write good, testable ASP.NET Core Web API code quickly" for more information.

MIT licence - available on NuGet.

1. ASP.NET Core MVC or Razor pages - copy status to ModelState

The extention method CopyErrorsToModelState which copy IStatusGeneric errors into ASP.NET Core's ModelState. Useful when working html/razor pages.

There are two forms of the method CopyErrorsToModelState - they are:

1a. CopyErrorsToModelState taking a dto

In ASP.NET Core MVC or Razor pages you need to return errors vai the ModelState, which has the property name and the error for that property. However it is important to NOT have a named property that doesn't appear in the class shown on the display, otherwise the error doesn't appear.

Because the Generic libraries can return errors with for properties not found in the display class there is a version of CopyErrorsToModelState that takes a parameter called displayDto and it will ensure the name is only set on properties that the displayDto has in it.

1b. CopyErrorsToModelState without a dto

If you want all the errors to have the property name left intact then there is another version that doesn't have a displayDto parameter.

2. ASP.NET Core Web API - forming the correct HTTP response

If you are using ASP.NET Core Web API you need the status codes of the Generic Libraries turned into the correct HTTP response. The CreateResponse static class contains a series of extension methods to do this for you.

NOTE: See this example Web API controller for examples of using the CreateResponse extension methods.

There are the following versions for both the GenericService and GenericBizRunner libraries:

  • IActionResult Response(this IStatusGeneric status) - this returns the status without any results.
  • IActionResult ResponseWithValidCode(this IStatusGeneric status, int validStatusCode) - this returns the status without any results, using the validStatusCode if the status has no errors.
  • ActionResult<T> Response<T>(this IStatusGeneric status, T results) - this returns the status with the results as a json object.
  • ActionResult<T> ResponseWithValidCode<T>(this IStatusGeneric status, T results, int validStatusCode, int nullResultStatusCode = 204) - this returns the status with the results as a json object, using the validStatusCode if the status has no errors and the result isn't null, or if the result is null it returns the nullResultStatusCode, which defaults to 204.
  • ActionResult<T> Response(this IStatusGeneric status, ControllerBase controller, string routeName, object routeValues, T dto) - this can be used with a Create to return a 201 status and a url to obtain the created item

Return formats

1. Success, no results

The HTTP status code defaults to 200, but you can change this by using the ResponseWithValidCode version of the methods. The json sent looks like this:

{
  "message": "Successfully deleted a Todo Item"
}
2. Success, with results - result is not null

The HTTP status code defaults to 200, but you can change this by using the ResponseWithValidCode version of the methods. The json sent looks like this:

{
  "message": "Success",
  "results": {
    "id": 1,
    "name": "Create ASP.NET Core API project",
    "difficulty": 1
  }
}
3. Success, with results where the results is null

The HTTP status code is 204 (NoContent), but you can change this by using the ResponseWithValidCode version of the method and providing the third parameter, nullResultStatusCode with the new status code. The json sent looks like this:

{
  "message": "The Todo Item was not found."
}
4. Create, returning a url

The ActionResult<T> Response(this IStatusGeneric status, ControllerBase controller, string routeName, object routeValues, T dto) method uses Microsoft's CreatedAtRoute method to return an HTTP status of 201 (Created), with the url to obtain the created item. This matches the HTTP status code definitions for a 201 create. Here is an example response:

Response body

{
  "name": "string",
  "difficulty": 1
}

Response headers (see returned url on line 3)

 content-type: application/json; charset=utf-8 
 date: Thu, 30 Aug 2018 11:07:48 GMT 
 location: http://localhost:54074/api/ToDo/7 
 ... other parts removed 
4. Error

The HTTP status code is 400 (BadRequest). The json sent looks like this:

{
    "": [
        "Global error message"
    ],    
    
    "MyPropery": [
        "The property is required",
        "Another error on the same property"
    ]
}

NOTE: This error format is the one that ASP.NET Core WebAPI when it is set up to validate data on input.

Unit test/Integration test of Web APIs

I have added some extension methods in the class ResponseDecoders that:

  1. Provides you with the HTTP Status Code in the response.
  2. Converts Web API responses that were created by the CreateResponse extension method into a
    GenericServices.IStatusGeneric type. This allows you to inspect the Status, message, Errors and returned Result.

I have added a section to my article on Web API that talks about this feature in more detail. Also do look at IntegrationTestToDoController for an example of how the ResponseDecoders extension methods are used.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EfCore.GenericServices.AspNetCore:

Package Downloads
EntityServices

Package Description

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on EfCore.GenericServices.AspNetCore:

Repository Stars
JonPSmith/AuthPermissions.AspNetCore
This library provides extra authorization and multi-tenant features to an ASP.NET Core application.
JonPSmith/PermissionAccessControl2
Version 2 of example application to go with articles on feature and data authorization
Version Downloads Last updated
4.1.1 24,162 6/19/2020
4.1.0 5,829 3/18/2020
4.0.0 3,356 10/14/2019
4.0.0-preview001 836 2/28/2020
3.0.2 22,055 9/5/2018
3.0.1 1,519 8/31/2018
3.0.0 1,418 8/22/2018
2.0.0 1,611 8/14/2018
1.2.1 1,553 7/30/2018
1.2.0 1,343 7/25/2018
1.1.0 2,303 6/7/2018
1.0.0 1,561 4/12/2018

- New Feature: Web API now supports CreatedAtRoute return