AdaskoTheBeAsT.Identity.Dapper
2.0.1
dotnet add package AdaskoTheBeAsT.Identity.Dapper --version 2.0.1
NuGet\Install-Package AdaskoTheBeAsT.Identity.Dapper -Version 2.0.1
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.1" />
paket add AdaskoTheBeAsT.Identity.Dapper --version 2.0.1
#r "nuget: AdaskoTheBeAsT.Identity.Dapper, 2.0.1"
// Install AdaskoTheBeAsT.Identity.Dapper as a Cake Addin #addin nuget:?package=AdaskoTheBeAsT.Identity.Dapper&version=2.0.1 // Install AdaskoTheBeAsT.Identity.Dapper as a Cake Tool #tool nuget:?package=AdaskoTheBeAsT.Identity.Dapper&version=2.0.1
AdaskoTheBeAsT.Identity.Dapper
Custom Dapper implementation for Microsoft.Extensions.Identity.Stores using Source Code Generators. https://learn.microsoft.com/en-us/aspnet/core/security/authentication/identity-custom-storage-providers?view=aspnetcore-7.0.
- It allows to customize classes which are used by Microsoft Identity and generate Dapper code for them.
- Schema of database needs to be created manually but queries are generated automatically.
- User can define own Id type for User and Role.
- User can also skip NormalizedUserName, NormalizedEmail and NormalizedName columns in database and queries.
Sample using nuget within project is available here Sample.
Breaking changes in version 2.x.x
- Changed main classes and interfaces due to Oracle integration. Now Oracle uses Dapper.Oracle package.
- base interface
IIdentityDbConnectionProvider
toIIdentityDbConnectionProvider<out TDbConnection>
. - base class
DapperRoleStoreBase<TRole, TKey, TRoleClaim>
toDapperRoleStoreBase<TRole, TKey, TRoleClaim, TDbConnection>
. - base class
DapperUserOnlyStoreBase<TUser, TKey, TUserClaim, TUserLogin, TUserToken>
toDapperUserOnlyStoreBase<TUser, TKey, TUserClaim, TUserLogin, TUserToken, TDbConnection>
. - base class
DapperUserStoreBase<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken>
toDapperUserStoreBase<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken, TDbConnection>
.
Additional features in version 2.x.x
- Added
InsertOwnIdAttribute
attribute. Now you can can insert own User Id and own Role Id when creating users and roles. It can help in scenarios when for example you want to have same Id for user in your database and in Azure Active Directory. - All settings have their default values and are distributed in packages.
Usage (version 2.x.x)
- To your project add following classes which inherits from Microsoft Identity classes
using Microsoft.AspNetCore.Identity;
namespace Sample.SqlServer;
public class ApplicationRole
: IdentityRole<Guid>
{
}
public class ApplicationRoleClaim
: IdentityRoleClaim<Guid>
{
}
// attribute is optional
// if you want to use your own Id type you can use this attribute
// it is helpful when for example you want to store MSAL user id
// as your id
[InsertOwnIdAttribute]
public class ApplicationUser
: IdentityUser<Guid>
{
// you can add your own properties with own column name
// (please manually add them to database or by script)
[Column("IsActive")]
public bool Active { get; set; }
}
public class ApplicationUserClaim
: IdentityUserClaim<Guid>
{
}
public class ApplicationUserLogin
: IdentityUserLogin<Guid>
{
}
public class ApplicationUserRole
: IdentityUserRole<Guid>
{
}
public class ApplicationUserToken
: IdentityUserToken<Guid>
{
}
- Register stores in your startup file
builder.Services.AddIdentity<ApplicationUser, ApplicationRole>()
.AddRoleStore<ApplicationRoleStore>()
.AddUserStore<ApplicationUserStore>()
.AddDefaultTokenProviders();
- Implement
IIdentityDbConnectionProvider<TDbConnection>
interface and register it in your startup file (sample for SqlServer - please adjust for other db providers)
public class IdentityDbConnectionProvider
: IIdentityDbConnectionProvider<SqlConnection>
{
private readonly IConfiguration _configuration;
public IdentityDbConnectionProvider(IConfiguration configuration)
{
_configuration = configuration;
}
public SqlConnection GetDbConnection()
{
return new SqlConnection(_configuration.GetConnectionString("DefaultIdentityConnection"));
}
}
...
builder.Services.AddSingleton<IIdentityDbConnectionProvider<SqlConnection>, IdentityDbConnectionProvider>();
- based on you database preovider add nuget package and settings:
SqlServer
- In your project add nuget packages
<ItemGroup>
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.SqlServer" Version="2.0.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
</ItemGroup>
- Optional settings which you can add to project file - below are default values
- it is safe to skip - add only if you want to modify them
<PropertyGroup>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<AdaskoTheBeAsTIdentityDapper_DbSchema>dbo</AdaskoTheBeAsTIdentityDapper_DbSchema>
<AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
</PropertyGroup>
PostgreSql
- In your project add nuget packages
<ItemGroup>
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.PostgreSql" Version="2.0.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
<PackageReference Include="Npgsql" Version="6.0.0" />
</ItemGroup>
- Optional settings which you can add to project file - below are default values
- it is safe to skip - add only if you want to modify them
<PropertyGroup>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<AdaskoTheBeAsTIdentityDapper_DbSchema>public</AdaskoTheBeAsTIdentityDapper_DbSchema>
<AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
</PropertyGroup>
MySql
- In your project add nuget packages
<ItemGroup>
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.MySql" Version="2.0.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
<PackageReference Include="MySql.Data" Version="9.0.0" />
</ItemGroup>
- Optional settings which you can add to project file - below are default values
- it is safe to skip - add only if you want to modify them (MySql does not have schema)
<PropertyGroup>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
</PropertyGroup>
- In case of choosing
Guid
as type of user please add this to your startup file
MySqlDapperConfig.ConfigureTypeHandlers();
Oracle
- In your project add nuget packages
<ItemGroup>
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.Oracle" Version="2.0.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.Oracle" Version="2.0.3" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="23.5.1" />
</ItemGroup>
- Optional settings which you can add to project file - below are default values
- it is safe to skip - add only if you want to modify them
<PropertyGroup>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<AdaskoTheBeAsTIdentityDapper_DbSchema>public</AdaskoTheBeAsTIdentityDapper_DbSchema>
<AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
<AdaskoTheBeAsTIdentityDapper_StoreBooleanAs>char</AdaskoTheBeAsTIdentityDapper_StoreBooleanAs>
</PropertyGroup>
- Please add this to your startup file
OracleDapperConfig.ConfigureTypeHandlers();
Sqlite
- In your project add nuget packages
<ItemGroup>
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="2.0.0" />
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.Sqlite" Version="2.0.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.8" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.8" />
</ItemGroup>
- Optional settings which you can add to project file - below are default values
- it is safe to skip - add only if you want to modify them (MySql does not have schema)
<PropertyGroup>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<AdaskoTheBeAsTIdentityDapper_SkipNormalized>false</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
</PropertyGroup>
Recompile your project
- You should see generated files in Generated folder (if you set EmitCompilerGeneratedFiles to true)
Usage (version 1.x.x)
- In your project add nuget packages
<ItemGroup>
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper" Version="1.3.0" />
<PackageReference Include="AdaskoTheBeAsT.Identity.Dapper.SqlServer" Version="1.3.0" />
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="Dapper.SqlBuilder" Version="2.0.78" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.7" />
</ItemGroup>
- Add following property groups to your project file
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
<AdaskoTheBeAsTIdentityDapper_DbSchema>id</AdaskoTheBeAsTIdentityDapper_DbSchema>
<AdaskoTheBeAsTIdentityDapper_SkipNormalized>true</AdaskoTheBeAsTIdentityDapper_SkipNormalized>
</PropertyGroup>
- Add following item groups
<ItemGroup>
<Compile Remove="$(CompilerGeneratedFilesOutputPath)/**/*.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Generated/**/*" />
</ItemGroup>
- To your project add following classes which inherits from Microsoft Identity classes
using Microsoft.AspNetCore.Identity;
namespace Sample.SqlServer;
public class ApplicationRole
: IdentityRole<Guid>
{
}
public class ApplicationRoleClaim
: IdentityRoleClaim<Guid>
{
}
// attribute is optional
// if you want to use your own Id type you can use this attribute
// it is helpful when for example you want to store MSAL user id
// as your id
[InsertOwnIdAttribute]
public class ApplicationUser
: IdentityUser<Guid>
{
[Column("IsActive")]
public bool Active { get; set; }
}
public class ApplicationUserClaim
: IdentityUserClaim<Guid>
{
}
public class ApplicationUserLogin
: IdentityUserLogin<Guid>
{
}
public class ApplicationUserRole
: IdentityUserRole<Guid>
{
}
public class ApplicationUserToken
: IdentityUserToken<Guid>
{
}
Recompile your project
You should see generated files in Generated folder (if you set EmitCompilerGenerated files to true)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (5)
Showing the top 5 NuGet packages that depend on AdaskoTheBeAsT.Identity.Dapper:
Package | Downloads |
---|---|
AdaskoTheBeAsT.Identity.Dapper.SqlServer
Autogenerates Identity stores based on Dapper |
|
AdaskoTheBeAsT.Identity.Dapper.MySql
Autogenerates Identity stores based on Dapper |
|
AdaskoTheBeAsT.Identity.Dapper.PostgreSql
Autogenerates Identity stores based on Dapper |
|
AdaskoTheBeAsT.Identity.Dapper.Oracle
Autogenerates Identity stores based on Dapper |
|
AdaskoTheBeAsT.Identity.Dapper.Sqlite
Autogenerates Identity stores based on Dapper |
GitHub repositories
This package is not used by any popular GitHub repositories.
- first release