Encamina.Enmarcha.Data.Abstractions 8.2.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Encamina.Enmarcha.Data.Abstractions --version 8.2.0
                    
NuGet\Install-Package Encamina.Enmarcha.Data.Abstractions -Version 8.2.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="Encamina.Enmarcha.Data.Abstractions" Version="8.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Encamina.Enmarcha.Data.Abstractions" Version="8.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Encamina.Enmarcha.Data.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Encamina.Enmarcha.Data.Abstractions --version 8.2.0
                    
#r "nuget: Encamina.Enmarcha.Data.Abstractions, 8.2.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.
#:package Encamina.Enmarcha.Data.Abstractions@8.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Encamina.Enmarcha.Data.Abstractions&version=8.2.0
                    
Install as a Cake Addin
#tool nuget:?package=Encamina.Enmarcha.Data.Abstractions&version=8.2.0
                    
Install as a Cake Tool

Data - Abstractions

Nuget package

This project mainly contains abstractions related to data used by other ENMARCHA NuGet packages or necessary for creating your own implementations.

Setup

Nuget package

First, install NuGet. Then, install Encamina.Enmarcha.Data.Abstractions from the package manager console:

PM> Install-Package Encamina.Enmarcha.Data.Abstractions

.NET CLI:

First, install .NET CLI. Then, install Encamina.Enmarcha.Data.Abstractions from the .NET CLI:

dotnet add package Encamina.Enmarcha.Data.Abstractions

How to use

In addition to the abstractions (interfaces, abstract classes, etc.) that have their implementations in other ENMARCHA NuGets, such as IFullUnitOfWork/FullUnitOfWork, you can create your own implementations.

public class InMemoryReadRepository<TEntity> : IReadRepository<TEntity> 
    where TEntity : IIdentifiable // IIdentifiable requires Encamina.Enmarcha.Entities.Abstractions nuget
{
    private readonly List<TEntity> entities = new();

    public IQueryable<TEntity> GetAll()
    {
        return entities.AsQueryable();
    }

    public IQueryable<TEntity> GetAll([NotNull] Func<IQueryable<TEntity>, IQueryable<TEntity>> queryFunction)
    {
        return entities.AsQueryable();
    }

    public TEntity GetById<TEntityId>(TEntityId id)
    {
        var entity = entities.FirstOrDefault(e => e.Id.Equals(id));
        if (entity == null)
        {
            throw new InvalidOperationException($"Entity with ID {id} not found.");
        }
        return entity;
    }
} 

This is example code, it is not tested. Do not use it in production.

In the previous example, an in-memory implementation of IReadRepository<TEntity> is created.

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.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (4)

Showing the top 4 NuGet packages that depend on Encamina.Enmarcha.Data.Abstractions:

Package Downloads
Encamina.Enmarcha.Data.Cosmos

Package Description

Encamina.Enmarcha.SemanticKernel

Package Description

Encamina.Enmarcha.SemanticKernel.Plugins.Chat

Package Description

Encamina.Enmarcha.Data.EntityFramework

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.2.1-preview-04 159 7/15/2025
8.2.1-preview-03 187 7/14/2025
8.2.1-preview-02 206 7/3/2025
8.2.1-preview-01 1,548 3/23/2025
8.2.0 2,074 10/22/2024
8.2.0-preview-01-m01 219 9/17/2024
8.1.9-preview-03 158 11/19/2024
8.1.9-preview-02 155 10/22/2024
8.1.9-preview-01 420 10/4/2024
8.1.8 385 9/23/2024
8.1.8-preview-07 1,305 9/12/2024
8.1.8-preview-06 371 9/11/2024
8.1.8-preview-05 205 9/10/2024
8.1.8-preview-04 532 8/16/2024
8.1.8-preview-03 281 8/13/2024
8.1.8-preview-02 195 8/13/2024
8.1.8-preview-01 224 8/12/2024
8.1.7 245 8/7/2024
8.1.7-preview-09 324 7/3/2024
8.1.7-preview-08 209 7/2/2024
8.1.7-preview-07 181 6/10/2024
8.1.7-preview-06 180 6/10/2024
8.1.7-preview-05 212 6/6/2024
8.1.7-preview-04 188 6/6/2024
8.1.7-preview-03 213 5/24/2024
8.1.7-preview-02 172 5/10/2024
8.1.7-preview-01 213 5/8/2024
8.1.6 2,292 5/7/2024
8.1.6-preview-08 182 5/2/2024
8.1.6-preview-07 207 4/29/2024
8.1.6-preview-06 579 4/26/2024
8.1.6-preview-05 209 4/24/2024
8.1.6-preview-04 228 4/22/2024
8.1.6-preview-03 211 4/22/2024
8.1.6-preview-02 310 4/17/2024
8.1.6-preview-01 316 4/15/2024
8.1.5 265 4/15/2024
8.1.5-preview-15 206 4/10/2024
8.1.5-preview-14 234 3/20/2024
8.1.5-preview-13 185 3/18/2024
8.1.5-preview-12 213 3/13/2024
8.1.5-preview-11 209 3/13/2024
8.1.5-preview-10 225 3/13/2024
8.1.5-preview-09 211 3/12/2024
8.1.5-preview-08 190 3/12/2024
8.1.5-preview-07 207 3/8/2024
8.1.5-preview-06 412 3/8/2024
8.1.5-preview-05 192 3/7/2024
8.1.5-preview-04 218 3/7/2024
8.1.5-preview-03 196 3/7/2024
8.1.5-preview-02 308 2/28/2024
8.1.5-preview-01 281 2/19/2024
8.1.4 383 2/15/2024
8.1.3 283 2/13/2024
8.1.3-preview-07 141 2/13/2024
8.1.3-preview-06 154 2/12/2024
8.1.3-preview-05 168 2/9/2024
8.1.3-preview-04 160 2/8/2024
8.1.3-preview-03 167 2/7/2024
8.1.3-preview-02 174 2/2/2024
8.1.3-preview-01 161 2/2/2024
8.1.2 209 2/1/2024
8.1.2-preview-9 169 1/22/2024
8.1.2-preview-8 154 1/19/2024
8.1.2-preview-7 154 1/19/2024
8.1.2-preview-6 138 1/19/2024
8.1.2-preview-5 144 1/19/2024
8.1.2-preview-4 146 1/19/2024
8.1.2-preview-3 148 1/18/2024
8.1.2-preview-2 170 1/18/2024
8.1.2-preview-16 130 1/31/2024
8.1.2-preview-15 140 1/31/2024
8.1.2-preview-14 240 1/25/2024
8.1.2-preview-13 150 1/25/2024
8.1.2-preview-12 167 1/23/2024
8.1.2-preview-11 167 1/23/2024
8.1.2-preview-10 177 1/22/2024
8.1.2-preview-1 156 1/18/2024
8.1.1 222 1/18/2024
8.1.0 200 1/18/2024
8.0.3 232 12/29/2023
8.0.1 210 12/14/2023
8.0.0 235 12/7/2023
6.0.4.3 238 12/29/2023
6.0.4.2 272 12/20/2023
6.0.4.1 331 12/19/2023
6.0.4 253 12/4/2023
6.0.3.20 236 11/27/2023
6.0.3.19 267 11/22/2023