EzSCIM 0.0.2
See the version list below for details.
dotnet add package EzSCIM --version 0.0.2
NuGet\Install-Package EzSCIM -Version 0.0.2
<PackageReference Include="EzSCIM" Version="0.0.2" />
<PackageVersion Include="EzSCIM" Version="0.0.2" />
<PackageReference Include="EzSCIM" />
paket add EzSCIM --version 0.0.2
#r "nuget: EzSCIM, 0.0.2"
#:package EzSCIM@0.0.2
#addin nuget:?package=EzSCIM&version=0.0.2
#tool nuget:?package=EzSCIM&version=0.0.2
EzSCIM
EzSCIM is a complete SCIM 2.0 server implementation for ASP.NET Core. Install one NuGet package, annotate your entity, implement one interface — and your API is provisioning-ready.
Quick install
# Any data source (Dapper, Cosmos DB, custom…)
dotnet add package EzSCIM
# Entity Framework Core
dotnet add package EzSCIM
dotnet add package EzSCIM.EfCore
Choose your integration model
<div class="grid cards" markdown>
:material-connection: IQueryable model
Use this if you already have a repository or ORM that is not EF Core (Dapper, Cosmos DB, MongoDB, custom…).
Annotate your entity with
[ScimProperty], implementIUserGroupDataRepository<TUser, TGroup>returning anIQueryable<T>, and EzSCIM translates SCIM filters to LINQ server-side.:material-database: EF Core model
Use this if you use Entity Framework Core. Inherit
EfScimRepositoryBase<TUser, TGroup, TContext>and get automatic Id generation, timestamps, CRUD, filter translation, and unique-constraint detection — with zero boilerplate.
</div>
Prerequisites
!!! info "Requirements" - .NET 8 or later - ASP.NET Core 8+ - (EF Core model only) Entity Framework Core 8+
:material-lock: Authentication
JWT Bearer token authentication — applies to both models.
:octicons-arrow-right-24: Authentication setup
Reference
| Topic | Model |
|---|---|
| Repository interfaces | IQueryable |
| SCIM filter syntax | IQueryable |
| SCIM 2.0 attribute reference | Both |
| Microsoft Entra ID required SCIM fields | Both |
Schema extensions [ScimProperty] |
Both |
| IScimEntity interface | EF Core |
| EfScimRepositoryBase reference | EF Core |
| Multi-provider: SQL Server / PostgreSQL | EF Core |
Last Updated: May 2026
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
-
net10.0
- ErrorOr (>= 2.0.1)
- Microsoft.AspNetCore.OpenApi (>= 10.0.0)
- System.IdentityModel.Tokens.Jwt (>= 8.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EzSCIM:
| Package | Downloads |
|---|---|
|
EzSCIM.EfCore
Entity Framework Core integration for EzSCIM — provides a generic base repository for SCIM-compatible EF DbContexts. |
GitHub repositories
This package is not used by any popular GitHub repositories.