AdaloExtensionPack.Core 0.2.10

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

// Install AdaloExtensionPack.Core as a Cake Tool
#tool nuget:?package=AdaloExtensionPack.Core&version=0.2.10

AdaloExtensionPack

nuget downloads

Helpers to connect C# Web app to Adalo tables API

Usage

Classic table

In the Startup.cs file add in the method ConfigureServices() :

 services.AddAdalo(x =>
 {
     x.AddApplication("[your Adalo App Id]", "[your API token here]")
        .AddTable<SomeEntity>("[table Id]", cached: false)
        .AddTable<SomeEntity>("[table Id 2]", cached: true);
 });

Then inject IAdaloTableService<SomeEntity> in your controller/services to connect directly to Adalo tables API, or IAdaloTableCacheService<SomeEntity> to add a cache layer between Adalo and your app.

Note: SomeEntity need to inherit from AdaloExtensionPack.Core.Adalo.AdaloEntity

Cached table

If the cached parameter is set to the true value in the call to AddTable, a controller with methods to create, read, update and delete this type of entities will be generated:

cached endpoints

These controllers can be used as external collections in Adalo to improve performances of your tables.

You can also access theses cached tables from your code with the class AdaloTableCacheService<SomeEntity>

Views

Views are filtered and mapped collections available through a controller GET action.

You can create a view by add this line inside the AddAdalo() call:

x.AddApplication("[your Adalo App Id]", "[your API token here]")
    .AddView<SomeContext, SomeEntity, SomeProjection>(
        serviceProvider => new SomeContext(serviceProvider), //Build a context which be reused in predicate and mapping
        (ctx, entity) => true, // Predicate
        (ctx, entity) => new SomeProjection(entity)); // Mapping

This will generate this method:

endponts views

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
0.2.16 75 5/24/2024
0.2.15 78 5/20/2024
0.2.14 69 5/20/2024
0.2.12 70 5/16/2024
0.2.11 62 5/16/2024
0.2.10 71 5/14/2024
0.2.9 65 5/14/2024
0.2.8 74 5/14/2024
0.2.7 65 5/14/2024
0.2.6 63 5/14/2024
0.2.5 64 5/13/2024
0.2.4 68 5/13/2024
0.2.3 60 5/13/2024
0.2.2 60 5/13/2024
0.2.1 57 5/13/2024
0.2.0 56 5/13/2024
0.1.1 322 4/9/2021
0.1.0 246 4/9/2021