EfCore.GenericServices.AspNetCore 1.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package EfCore.GenericServices.AspNetCore --version 1.2.1
NuGet\Install-Package EfCore.GenericServices.AspNetCore -Version 1.2.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="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EfCore.GenericServices.AspNetCore --version 1.2.1
#r "nuget: EfCore.GenericServices.AspNetCore, 1.2.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=1.2.1

// Install EfCore.GenericServices.AspNetCore as a Cake Tool
#tool nuget:?package=EfCore.GenericServices.AspNetCore&version=1.2.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.

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) - this returns the status with the results as a json object, using the validStatusCode if the status has no errors.

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 404 (NoFound). The json sent looks like this:

{
  "message": "The Todo Item was not found."
}
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.

MIT licence

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,423 6/19/2020
4.1.0 5,860 3/18/2020
4.0.0 3,356 10/14/2019
4.0.0-preview001 849 2/28/2020
3.0.2 22,079 9/5/2018
3.0.1 1,521 8/31/2018
3.0.0 1,420 8/22/2018
2.0.0 1,615 8/14/2018
1.2.1 1,555 7/30/2018
1.2.0 1,345 7/25/2018
1.1.0 2,305 6/7/2018
1.0.0 1,563 4/12/2018

- New feature: Added `ResponseWithValidCode` methods to allow the StatusCode to be set for the success path - useful for things like 'POST' where you might want to return a status code of 201 instead of 200
     - Updated to newest versions of GenericServices and GenericBizRunner