Azka 4.0.0-alpha.2

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

// Install Azka as a Cake Tool
#tool nuget:?package=Azka&version=4.0.0-alpha.2&prerelease

Azka

This Package is base on Ardalis.Specification. On this version SaveChangesAsync already move from Repository to UnitOfWork

Entity

public class Item 
{
    // Property 
}

Repository

Interface Repository

public interface IItemRepository : Azka.Repository.IRepositoryBase<Item>
{
}

Implementation Repository

public class ItemRepository : Azka.Repository.RepositoryBase<Item>, IItemRepository
{
}

Unit Of Work

Interface Unit Of Work

public interface IUnitOfWork : Azka.UnitOfWork.IUnitOfWorkBase 
{
    IItemRepository Items { get; } 
}

Implementation Unit Of Work

public class UnitOfWork : Azka.UnitOfWork.UnitOfWorkBase, IUnitOfWork
{
    private readonly DbContext _dbContext;
    public UnitOfWork(SqlServerDbContext dbContext) 
    {
        _dbContext = dbContext
    }
    
    private IItemRepository _itemRepository;
    public IItemRepository Item => _itemRepository = _itemRepository??new ItemRepository(_dbContext);
}

Expression Composer

And

Example And

Expression<Func<Item, bool>> sample = f => f.Id == 1;
sample = sample.And(f => f.Name == "name");

result:

((f.Id == 1) AndAlso (f.Name == "name"))

Or

Expression<Func<Item, bool>> sample = f => f.Id == 1;
sample = sample.Or(f => f.Name == "name");

result:

((f.Id == 1) OrElse (f.Name == "name"))
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
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
4.0.0-alpha.15 72 2/8/2024
4.0.0-alpha.14 98 1/1/2024
4.0.0-alpha.13 101 12/16/2023
4.0.0-alpha.12 67 12/16/2023
4.0.0-alpha.11 66 12/16/2023
4.0.0-alpha.10 69 12/15/2023
4.0.0-alpha.9 99 11/12/2023
4.0.0-alpha.8 58 11/10/2023
4.0.0-alpha.7 82 4/28/2023
4.0.0-alpha.6 81 4/28/2023
4.0.0-alpha.5 82 4/26/2023
4.0.0-alpha.4 74 4/24/2023
4.0.0-alpha.3 78 4/24/2023
4.0.0-alpha.2 87 4/20/2023
4.0.0-alpha.1 84 4/20/2023
3.0.0-alpha.6 180 12/29/2022
3.0.0-alpha.5 96 12/5/2022
3.0.0-alpha.4 107 10/15/2022
3.0.0-alpha.2 108 10/15/2022
3.0.0-alpha.1 115 10/15/2022
2.0.1-alpha1 173 6/8/2022
2.0.1-alpha.6 107 10/14/2022
2.0.1-alpha.5 108 10/2/2022
2.0.1-alpha.4 123 9/19/2022
2.0.1-alpha.3 108 9/10/2022
2.0.1-alpha.2 130 7/14/2022
2.0.1-alpha.1 133 6/11/2022
2.0.0 510 5/21/2022
0.0.1-alpha.4 130 5/9/2022
0.0.1-alpha.3 125 2/6/2022
0.0.1-alpha.2 144 2/5/2022
0.0.1-alpha.1 144 1/22/2022