Encamina.Enmarcha.Data.Abstractions 8.1.5

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.1.5
NuGet\Install-Package Encamina.Enmarcha.Data.Abstractions -Version 8.1.5
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.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Encamina.Enmarcha.Data.Abstractions --version 8.1.5
#r "nuget: Encamina.Enmarcha.Data.Abstractions, 8.1.5"
#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 Encamina.Enmarcha.Data.Abstractions as a Cake Addin
#addin nuget:?package=Encamina.Enmarcha.Data.Abstractions&version=8.1.5

// Install Encamina.Enmarcha.Data.Abstractions as a Cake Tool
#tool nuget:?package=Encamina.Enmarcha.Data.Abstractions&version=8.1.5

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. 
.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.SemanticKernel

Package Description

Encamina.Enmarcha.Data.Cosmos

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.1.6-preview-08 0 5/2/2024
8.1.6-preview-07 106 4/29/2024
8.1.6-preview-06 128 4/26/2024
8.1.6-preview-05 130 4/24/2024
8.1.6-preview-04 137 4/22/2024
8.1.6-preview-03 121 4/22/2024
8.1.6-preview-02 165 4/17/2024
8.1.6-preview-01 188 4/15/2024
8.1.5 158 4/15/2024
8.1.5-preview-15 125 4/10/2024
8.1.5-preview-14 144 3/20/2024
8.1.5-preview-13 102 3/18/2024
8.1.5-preview-12 137 3/13/2024
8.1.5-preview-11 126 3/13/2024
8.1.5-preview-10 123 3/13/2024
8.1.5-preview-09 115 3/12/2024
8.1.5-preview-08 111 3/12/2024
8.1.5-preview-07 123 3/8/2024
8.1.5-preview-06 326 3/8/2024
8.1.5-preview-05 113 3/7/2024
8.1.5-preview-04 120 3/7/2024
8.1.5-preview-03 120 3/7/2024
8.1.5-preview-02 221 2/28/2024
8.1.5-preview-01 194 2/19/2024
8.1.4 277 2/15/2024
8.1.3 159 2/13/2024
8.1.3-preview-07 81 2/13/2024
8.1.3-preview-06 90 2/12/2024
8.1.3-preview-05 92 2/9/2024
8.1.3-preview-04 94 2/8/2024
8.1.3-preview-03 93 2/7/2024
8.1.3-preview-02 90 2/2/2024
8.1.3-preview-01 81 2/2/2024
8.1.2 114 2/1/2024
8.1.2-preview-9 100 1/22/2024
8.1.2-preview-8 86 1/19/2024
8.1.2-preview-7 87 1/19/2024
8.1.2-preview-6 77 1/19/2024
8.1.2-preview-5 85 1/19/2024
8.1.2-preview-4 83 1/19/2024
8.1.2-preview-3 85 1/18/2024
8.1.2-preview-2 103 1/18/2024
8.1.2-preview-16 77 1/31/2024
8.1.2-preview-15 85 1/31/2024
8.1.2-preview-14 170 1/25/2024
8.1.2-preview-13 88 1/25/2024
8.1.2-preview-12 84 1/23/2024
8.1.2-preview-11 82 1/23/2024
8.1.2-preview-10 78 1/22/2024
8.1.2-preview-1 69 1/18/2024
8.1.1 127 1/18/2024
8.1.0 108 1/18/2024
8.0.3 150 12/29/2023
8.0.1 126 12/14/2023
8.0.0 162 12/7/2023
6.0.4.3 146 12/29/2023
6.0.4.2 175 12/20/2023
6.0.4.1 241 12/19/2023
6.0.4 184 12/4/2023
6.0.3.20 160 11/27/2023
6.0.3.19 169 11/22/2023