MongoFlow.Identity 0.2.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package MongoFlow.Identity --version 0.2.6
                    
NuGet\Install-Package MongoFlow.Identity -Version 0.2.6
                    
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="MongoFlow.Identity" Version="0.2.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MongoFlow.Identity" Version="0.2.6" />
                    
Directory.Packages.props
<PackageReference Include="MongoFlow.Identity" />
                    
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 MongoFlow.Identity --version 0.2.6
                    
#r "nuget: MongoFlow.Identity, 0.2.6"
                    
#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 MongoFlow.Identity@0.2.6
                    
#: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=MongoFlow.Identity&version=0.2.6
                    
Install as a Cake Addin
#tool nuget:?package=MongoFlow.Identity&version=0.2.6
                    
Install as a Cake Tool

MongoFlow.Identity

License: MIT .NET C# NuGet

This package is not ready for production use. It is still in development and should not be used in a production environment.

We welcome your feedback! You can reach us by opening a GitHub issue.

A MongoDB provider for ASP.NET Core Identity that leverages MongoFlow for seamless integration.

Installation

dotnet add package MongoFlow.Identity

Usage

You can call AddMongoFlowStores<TVault> on IdentityBuilder to configure the MongoDB stores. For example:

services.AddIdentityCore<MongoUser>()
            .AddRoles<MongoRole>()
            .AddMongoFlowStores<MyVault>();

You can customize MongoUser and MongoRole by inheriting.

public class MyUser : MongoUser
{
    public string MyProperty { get; set; }
}

public class MyRole : MongoRole
{
    public string MyProperty { get; set; }
}

or with custom key

public class MyUser : MongoUser<Guid>
{
    public string MyProperty { get; set; }
}

public class MyRole : MongoRole<Guid>
{
    public string MyProperty { get; set; }
}
Product 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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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.2.8 713 1/10/2026
0.2.7 236 1/5/2026
0.2.6 151 12/26/2025
0.2.5 175 12/26/2025
0.2.4 181 12/25/2025
0.2.3 179 12/25/2025
0.2.2 670 9/27/2025
0.2.1 2,109 3/16/2025
0.2.0 658 1/12/2025
0.2.0-beta.0 197 12/19/2024
0.1.16 203 12/17/2024
0.1.15 259 12/2/2024
0.1.14 145 12/1/2024
0.1.13 200 11/25/2024
0.1.12 173 11/23/2024
0.1.11 149 11/23/2024
0.1.10 238 11/11/2024
0.1.9 158 11/11/2024
0.1.8 161 11/10/2024
0.1.7 141 11/10/2024
Loading failed