Valtuutus.Data.SqlServer
0.1.0-alpha
This is a prerelease version of Valtuutus.Data.SqlServer.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Valtuutus.Data.SqlServer --version 0.1.0-alpha
NuGet\Install-Package Valtuutus.Data.SqlServer -Version 0.1.0-alpha
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="Valtuutus.Data.SqlServer" Version="0.1.0-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Valtuutus.Data.SqlServer --version 0.1.0-alpha
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Valtuutus.Data.SqlServer, 0.1.0-alpha"
#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 Valtuutus.Data.SqlServer as a Cake Addin #addin nuget:?package=Valtuutus.Data.SqlServer&version=0.1.0-alpha&prerelease // Install Valtuutus.Data.SqlServer as a Cake Tool #tool nuget:?package=Valtuutus.Data.SqlServer&version=0.1.0-alpha&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Valtuutus
A Google Zanzibar inspired authorization library in .NET
The implementation is based on the permify and other ReBac open source projects.
Functionality
The library is designed to be simple and easy to use. Each subset of functionality is divided in engines. The engines are:
- DataEngine: The engine that handles the write and deletion of relation tuples and attributes.
- Read here about how the relational data is stored.
- CheckEngine: The engine that handles the answering of two questions:
Can entity U perform action Y in resource Z
? For that, use theCheck
function.What permissions entity U have in resource Z
? For that, use theSubjectPermission
function.
- LookupSubjectEngine: The engine that can answer:
Which subjects of type T have permission Y on entity:X?
For that, use theLookup
function. - LookupEntityEngine: The engine that can answer:
Which resources of type T can entity:X have permission Y?
For that, use theLookupEntity
function.
Usage
Install the package from NuGet:
If using Postgres:
dotnet add package Valtuutus.Data.Postgres
If using SqlServer:
dotnet add package Valtuutus.Data.SqlServer
Adding to DI:
builder.Services.AddValtuutusCore(c =>
...
See examples of how to define your schema here.
If using Postgres:
builder.Services.AddValtuutusDatabase(() => new NpgsqlConnection(builder.Configuration.GetConnectionString("PostgresDb")!), a => a.AddPostgres());
If using SqlServer:
builder.Services.AddValtuutusDatabase(() => new SqlConnection(builder.Configuration.GetConnectionString("SqlServerDb")!), a => a.AddSqlServer());
Telemetry
The library uses OpenTelemetry to provide telemetry data. To enable it, just add a source with the name "Valtuutus":
builder.Services
.AddOpenTelemetry()
.WithTracing(telemetry =>
{
telemetry
.AddSource("Valtuutus")
...
Product | Versions 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.
-
net8.0
- FastMember (>= 1.5.0)
- Microsoft.Data.SqlClient (>= 5.2.0)
- Valtuutus.Data (>= 0.1.0-alpha)
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.7.0-beta | 31 | 11/19/2024 |
0.6.0-beta | 48 | 10/9/2024 |
0.5.0-beta | 74 | 8/21/2024 |
0.4.0-alpha | 42 | 7/26/2024 |
0.3.0-alpha | 69 | 4/4/2024 |
0.2.0-alpha | 62 | 3/27/2024 |
0.1.0-alpha | 63 | 3/25/2024 |
Version 0.1-alpha:
Initial release to begin testing