DataAuth 1.1.0

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

// Install DataAuth as a Cake Tool
#tool nuget:?package=DataAuth&version=1.1.0

Introduction

This project aims to create a mechanism for data authorization. ...

Getting started

  1. Adding nuget package ...

  2. In your main application Program.cs, adding dependency injection for services

    builder.Services.AddDbContext<DataAuthDbContext>(options => options.UseSqlServer("name=ConnectionStrings:YourConnectionStringName",
    b => b.MigrationsAssembly("YourAssemblyName")));
    builder.Services.AddSingleton<IMemoryCache, MemoryCache>();
    builder.Services.AddSingleton<ICacheProvider, MemoryCacheProvider>();
    builder.Services.AddScoped<ICoreService, CoreService>();
    builder.Services.AddScoped<IAccessAttributeService, AccessAttributeService>();
    builder.Services.AddScoped<IAccessAttributeTableService, AccessAttributeTableService>();
    builder.Services.AddScoped<IDataPermissionService, DataPermissionService>();
    builder.Services.AddScoped<IRoleService, RoleService>();
    builder.Services.AddScoped<IUserRoleService, UserRoleService>();
    
  3. Also in your main application Program.cs, below var app = builder.Build();, add the following line:

    EfExtensions.Initialize(app.Services);
    
  4. In your data access service, using WithDataAuthAsync extension method to filter data by data permission. For example:

    using DataAuth.Core;
    
    var orders = await _dbContext.Orders.WithDataAuthAsync<Order, int>("2", "STORE", x => x.StoreId.Value);
    
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
1.1.0 118 9/15/2023
1.0.1 126 7/29/2023
1.0.0 125 7/29/2023