Daarto icon indicating copy to clipboard operation
Daarto copied to clipboard

Dapper implementation of ASP.NET Core Identity stores.

Results 21 Daarto issues
Sort by recently updated
recently updated
newest added

Added table support for removing roles. Changed code of UserRoles.Remove(userRole), because it didn't actually remove the role. It was a different instance and it compared by reference in UserRoles.Remove.

Bumps [System.Data.SqlClient](https://github.com/dotnet/corefx) from 4.8.3 to 4.8.5. Release notes Sourced from System.Data.SqlClient's releases. .NET Core 2.1.0 RC1 Release Notes Known Issues Download and Install Repos CoreCLR CoreFX Core-Setup CLI Commits See...

dependencies
.NET

Bumps [bootstrap](https://github.com/twbs/bootstrap) from 3.3.7 to 3.4.1. Release notes *Sourced from [bootstrap's releases](https://github.com/twbs/bootstrap/releases).* > ## v3.4.1 > * **Security:** Fixed an XSS vulnerability (CVE-2019-8331) in our tooltip and popover plugins by...

dependencies

Bumps [jquery](https://github.com/jquery/jquery) from 3.3.1 to 3.4.1. Commits - [`75f7e96`](https://github.com/jquery/jquery/commit/75f7e963708b60f37a42b777f35825d33c4f8e7a) 3.4.1 - [`7dddb19`](https://github.com/jquery/jquery/commit/7dddb19ca4bca9685adb734c76dcf72c3f610007) Core: Make isAttached work with iOS 10.0-10.2 - [`6c1e7db`](https://github.com/jquery/jquery/commit/6c1e7dbf7311ae7c0c31ba335fe216185047ae5f) Event: Prevent leverageNative from registering duplicate dummy handlers -...

dependencies

addresses issues #20 #21 #22 #23 #24 They may not all be to your liking, but no response to the issues logged and I needed to push ahead for my...

Hi, first of all I wanted to thank you for this project. I tried using it because I was interested in better performances. Since the db I tested is on...

The line ```c# if (roleType != null) { ... } else { services.TryAddScoped( typeof(IUsersOnlyTable).MakeGenericType(userType, keyType, userClaimType, userLoginType, userTokenType), typeof(UsersTable).MakeGenericType(userType, keyType, userClaimType, roleType, userLoginType, userTokenType) ``` will throw an error if...

Hi, im very new to ASP.NET but can anyone explain how this can work if it does not create any required tables into database??? Maybe this have some code to...

DapperStoreOptionsExtension adds the scoped IService ```c# options.Services.AddScoped(typeof(IUsersTable).MakeGeneric.... ``` However if a roleType is not provided, DI looks for an implementation of `IUsersOnlyTable`. There are 2 possible solutions depending on what...

`DapperStoreOptions` includes an instance of `SqlServerDbConnectionStore` which is only every used for its `GetType()` method. It would seem to make more sense to have a property of DapperStoreOptions: ```c# DbConnectionFactoryType...