AddXMapEndpoints 2.1.0

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

// Install AddXMapEndpoints as a Cake Tool
#tool nuget:?package=AddXMapEndpoints&version=2.1.0

XMaps Enpoints

Auto-generate Minimal API using a WebApplication extension.

Follow those simple steps:

  1. Add the extension method inside your Program.cs class:
    app.AddXMapEndpointsDto();  // 'The Queen' said: It's a kind of magic :-)

    // If you are using Authorization/Authentication you can configure XMap with the specific overload:
    // app.AddXMapEndpointsDto(true); // Minimal API will be decorated with the [Authorize] attribute
  1. Decorate the DTO you want to create/read/update/delete with the �AddXMapEndpoints� attribute:

    [AddXMapEndpoints]

    public class MyDto {....}

    NB: Navigation properties (FK) are automatically loaded. To load also �children' collection navigations you must explicitly declare it within the attribute:

    [AddXMapEndpoints(includeChildren: true)]

  2. Add '@using XMap' into _Imports.razor (or put inside your components/pages) if needed (see 'QryObj')

NB: If you don't use DTO layer use this extension method to work directly with EF Models:

app.AddXMapEndpoints();

How it works:

Decorating a DTO with the �AddXMapEndpoints� attribute will cause the NET.CORE middleware create those methods:

  • GET ⇒ IEnumerable<MyDto>
  • GET ⇒ MyDto (searching by key)
  • POST ⇒ MyDto
  • PUT ⇒ MyDto
  • DELETE ⇒ MyDto (using POST verb)

New feature: Do query using System.Linq.Dynamic.Core

  • POST ⇒ QryObj<MyDto>

The api, and relative routes, will be created in this way:**

  • MapGet ⇒ "/XMap/" + typeof(MyDto).Name
  • MapGet ⇒ "/XMap/" + typeof(MyDto).Name + "/{key}"
  • MapPost ⇒ "/XMap/" + typeof(MyDto).Name , myDto
  • MapPut ⇒ "/XMap/" + typeof(MyDto).Name , myDto
  • MapPost ⇒ "/XMap/Delete/" + typeof(MyDto).Name , myDto

New feature: Do query using System.Linq.Dynamic.Core

  • MapPost ⇒ "/XMap/QryObj/" + typeof(MyDto).Name , qryObj

    NB: 'qryObj' is an object containing query definition (using Dynamic.Linq syntax, see examples below)

Examples:

// Get a LIST of DTO
var many = await httpClient.GetFromJsonAsync<List<MyDto>>(baseUri + "/XMap/" + nameof(MyDto));

// Get a SINGLE DTO (with key = 1)
var one = await httpClient.GetFromJsonAsync<MyDto>(baseUri + "/XMap/" + nameof(MyDto) +"/1");

// Create a new entity (mapped from myDto)
var newDto = await httpClient.PostAsJsonAsync<MyDto>(baseUri + "/XMap/" + nameof(MyDto), myDto);

// Update an existing entity (mapped from myDto)
var updDto = await httpClient.PutAsJsonAsync<MyDto>(baseUri + "/XMap/" + nameof(MyDto), myDto);

// Delete an existing entity (mapped from myDto) NB: POST verb is used (to pass dto as body)
var res = await httpClient.PostAsJsonAsync<MyDto>(baseUri + "/XMap/Delete/" + nameof(MyDto), myDto);

// Manage multiple keyed Dto (Key1 and Key2 are PK fields)
var list = await httpClient.GetFromJsonAsync<List<DoubleKeyedDto>>(baseUri + "XMap/" + nameof(DoubleKeyedDto));
// Get item by keys (pass them into uri: ?key1=A&key2=B)
var item = await httpClient.GetFromJsonAsync<DoubleKeyedDto>(baseUri + "XMap/" + nameof(DoubleKeyedDto)+"?key1=A&key2=B");

Examples with EF Modles (without DTO layer)

// Type names will determine route rules: MyEntity instead of MyDto (take care to type names!)
var many = await httpClient.GetFromJsonAsync<List<MyEntity>>(baseUri + "/XMap/" + nameof(MyEntity));
var one = await httpClient.GetFromJsonAsync<MyEntity>(baseUri + "/XMap/" + nameof(MyEntity) +"/1");
var newone = await httpClient.PostAsJsonAsync<MyEntity>(baseUri + "/XMap/" + nameof(MyEntity), myEntity);
var upd = await httpClient.PutAsJsonAsync<MyEntity>(baseUri + "/XMap/" + nameof(MyEntity), myEntity);
var res = await httpClient.PostAsJsonAsync<MyEntity>(baseUri + "/XMap/Delete/" + nameof(MyEntity), myEntity);
...

New feature: Do query using System.Linq.Dynamic.Core

// Query database dynamically with QryObj class (in this case 'ParentDtoProperty' is a property mapped using a Navigation)
var qry = new QryObj<MyDto>() { Qry = "ParentDtoProperty==@0", Pars = new object[] { "some value" } }; 

// POST verb is used (to pass QryObj as body)
var qryres = await httpClient.PostAsJsonAsync<QryObj<MyDto>>(baseUri + "/XMap/QryObj/" + nameof(MyDto), qry);

// Read content
string jsonContent = await qryres.Content.ReadAsStringAsync();

// Get QryObj deserializing content
var obj = JsonConvert.DeserializeObject<QryObj<MyDto>>(jsonContent);

// 'Result' property contains the collection of IEnumerable<MyDto>
var myDtoCollection = obj?.Result;

QryObj Class definition (XMap namespace)


namespace XMap
{
    public class QryObj<TDto>
    {
        public string Qry { get; set; }
        public object[] Pars { get; set; }

        public IEnumerable<TDto> Result { get; set; }
    }
    .....
}

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.2 109 3/3/2024
2.1.0 90 3/3/2024
2.0.0 103 3/2/2024
1.1.0 75 2/23/2024
1.0.0 85 2/17/2024