EzSCIM.EfCore 0.0.3

dotnet add package EzSCIM.EfCore --version 0.0.3
                    
NuGet\Install-Package EzSCIM.EfCore -Version 0.0.3
                    
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="EzSCIM.EfCore" Version="0.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EzSCIM.EfCore" Version="0.0.3" />
                    
Directory.Packages.props
<PackageReference Include="EzSCIM.EfCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EzSCIM.EfCore --version 0.0.3
                    
#r "nuget: EzSCIM.EfCore, 0.0.3"
                    
#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.
#:package EzSCIM.EfCore@0.0.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EzSCIM.EfCore&version=0.0.3
                    
Install as a Cake Addin
#tool nuget:?package=EzSCIM.EfCore&version=0.0.3
                    
Install as a Cake Tool

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.

NuGet NuGet License: MIT


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], implement IUserGroupDataRepository<TUser, TGroup> returning an IQueryable<T>, and EzSCIM translates SCIM filters to LINQ server-side.

    :octicons-arrow-right-24: Get started with IQueryable

  • :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.

    :octicons-arrow-right-24: Get started with EF Core

</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

🤖 Copilot Skill

The repository ships a GitHub Copilot Agent Skill that guides you through the full EzSCIM setup interactively — no need to read the docs first.

Install

gh skill install miiitch/EzSCIM ezscim

Usage

Open GitHub Copilot Chat and describe what you want to do, mentioning your stack:

"Set up EzSCIM in my ASP.NET Core project using EF Core and SQL Server"

or just:

"Add SCIM provisioning to my app"

The skill will ask you four questions before writing any code:

# Question Options
1 Integration model? IQueryable (Dapper, Cosmos DB, custom…) or EF Core
2 Group support needed? Yes / No
3 Database / ORM in use? Free text — e.g. "EF Core + PostgreSQL"
4 Add JWT Bearer authentication? Yes / No

It then generates all the boilerplate: entity, repository, Program.cs DI registration, and appsettings.json JWT configuration.

Manual install

Per repository — copy skills/ezscim/ into your project under .github/copilot/skills/ezscim/.

Per user (all workspaces):

OS Path
Windows %USERPROFILE%\.agents\skills\ezscim\
macOS / Linux ~/.agents/skills/ezscim/

Last Updated: May 2026

Product 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. 
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
0.0.3 95 5/15/2026
0.0.2 91 5/15/2026
0.0.1 109 4/24/2026